| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- /* Pingback Fixture generated on: 2011-03-29 16:03:41 : 1301409941 */
- class PingbackFixture extends CakeTestFixture {
- public $fields = [
- 'id' => ['type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary'],
- 'foreign_id' => ['type' => 'string', 'null' => true, 'default' => null, 'length' => 36, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'],
- 'model' => ['type' => 'string', 'null' => false, 'default' => null, 'length' => 30, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'],
- 'title' => ['type' => 'string', 'null' => false, 'default' => null, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'],
- 'url' => ['type' => 'string', 'null' => false, 'default' => null, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'],
- 'ip' => ['type' => 'string', 'null' => false, 'default' => null, 'length' => 60, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'],
- 'host' => ['type' => 'string', 'null' => false, 'default' => null, 'length' => 100, 'collate' => 'utf8_unicode_ci', 'charset' => 'utf8'],
- 'status' => ['type' => 'integer', 'null' => false, 'default' => '0', 'length' => 2, 'comment' => 'approved etc'],
- 'created' => ['type' => 'datetime', 'null' => true, 'default' => null],
- 'indexes' => ['PRIMARY' => ['column' => 'id', 'unique' => 1]],
- 'tableParameters' => []
- ];
- public $records = [
- [
- 'id' => 1,
- 'foreign_id' => 'Lorem ipsum dolor sit amet',
- 'model' => 'Lorem ipsum dolor sit amet',
- 'title' => 'Lorem ipsum dolor sit amet',
- 'url' => 'Lorem ipsum dolor sit amet',
- 'ip' => 'Lorem ipsum dolor sit amet',
- 'host' => 'Lorem ipsum dolor sit amet',
- 'status' => 1,
- 'created' => '2011-03-29 16:45:41'
- ],
- ];
- }
|