| 12345678910111213141516171819202122232425262728293031 |
- <?php
- class RevisionTagFixture extends CakeTestFixture {
- public $fields = array(
- 'id' => array(
- 'type' => 'integer',
- 'null' => false,
- 'default' => NULL,
- 'key' => 'primary'),
- 'title' => array('type' => 'string', 'null' => false, 'default' => NULL),
- 'indexes' => array('PRIMARY' => array('column' => 'id')));
- public $records = array(
- array(
- 'id' => 1,
- 'title' => 'Fun',
- ),
- array(
- 'id' => 2,
- 'title' => 'Hard'
- ),
- array(
- 'id' => 3,
- 'title' => 'Trick'
- ),
- array(
- 'id' => 4,
- 'title' => 'News'
- ),
- );
- }
|