| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- /* State Fixture generated on: 2011-11-20 21:59:38 : 1321822778 */
- /**
- * StateFixture
- *
- */
- class StateFixture extends CakeTestFixture {
- /**
- * Fields
- *
- * @var array
- */
- public $fields = array(
- 'id' => array('type' => 'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary', 'collate' => NULL, 'comment' => ''),
- 'country_id' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 10, 'collate' => NULL, 'comment' => ''),
- 'name' => array('type' => 'string', 'null' => false, 'default' => NULL, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
- 'abbr' => array('type' => 'string', 'null' => false, 'default' => NULL, 'length' => 3, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
- 'lat' => array('type' => 'float', 'null' => false, 'default' => '0.000000', 'length' => '10,6', 'collate' => NULL, 'comment' => ''),
- 'lng' => array('type' => 'float', 'null' => false, 'default' => '0.000000', 'length' => '10,6', 'collate' => NULL, 'comment' => ''),
- 'slug' => array('type' => 'string', 'null' => false, 'default' => NULL, 'key' => 'index', 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
- 'modified' => array('type' => 'datetime', 'null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),
- 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1), 'slug' => array('column' => 'slug', 'unique' => 0)),
- 'tableParameters' => array()
- );
- /**
- * Records
- *
- * @var array
- */
- public $records = array(
- array(
- 'id' => '1',
- 'country_id' => '1',
- 'name' => 'Schleswig-Holstein',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'schleswig-holstein',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '2',
- 'country_id' => '1',
- 'name' => 'Hamburg',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'hamburg',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '3',
- 'country_id' => '1',
- 'name' => 'Niedersachsen',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'niedersachsen',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '4',
- 'country_id' => '1',
- 'name' => 'Bremen',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'bremen',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '5',
- 'country_id' => '1',
- 'name' => 'Nordrhein-Westfalen',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'nordrhein-westfalen',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '6',
- 'country_id' => '1',
- 'name' => 'Hessen',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'hessen',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '7',
- 'country_id' => '1',
- 'name' => 'Rheinland-Pfalz',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'rheinland-pfalz',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '8',
- 'country_id' => '1',
- 'name' => 'Baden-Württemberg',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'baden-wuerttemberg',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '9',
- 'country_id' => '1',
- 'name' => 'Bayern',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'bayern',
- 'modified' => '0000-00-00 00:00:00'
- ),
- array(
- 'id' => '10',
- 'country_id' => '1',
- 'name' => 'Saarland',
- 'abbr' => '',
- 'lat' => '0.000000',
- 'lng' => '0.000000',
- 'slug' => 'saarland',
- 'modified' => '0000-00-00 00:00:00'
- ),
- );
- }
|