| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /* PostalCode Fixture generated on: 2011-11-20 21:59:25 : 1321822765 */
- /**
- * PostalCodeFixture
- *
- */
- class PostalCodeFixture extends CakeTestFixture {
- /**
- * Fields
- *
- * @var array
- */
- public $fields = array(
- 'id' => array('type' => 'string', 'null' => false, 'default' => NULL, 'length' => 36, 'key' => 'primary', 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
- 'code' => array('type' => 'string', 'null' => false, 'default' => NULL, 'length' => 5, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
- 'country_id' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 2, 'collate' => NULL, 'comment' => ''),
- 'lat' => array('type' => 'float', 'null' => false, 'default' => '0.0000', 'length' => '9,4', 'collate' => NULL, 'comment' => ''),
- 'lng' => array('type' => 'float', 'null' => false, 'default' => '0.0000', 'length' => '9,4', 'collate' => NULL, 'comment' => ''),
- 'official_address' => array('type' => 'string', 'null' => false, 'default' => NULL, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
- 'created' => array('type' => 'datetime', 'null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),
- 'modified' => array('type' => 'datetime', 'null' => false, 'default' => NULL, 'collate' => NULL, 'comment' => ''),
- 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)),
- 'tableParameters' => array()
- );
- /**
- * Records
- *
- * @var array
- */
- public $records = array(
- );
- }
|