RevisionUserFixture.php 605 B

1234567891011121314151617
  1. <?php
  2. class RevisionUserFixture extends CakeTestFixture {
  3. public $fields = array(
  4. 'id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'key' => 'primary'),
  5. 'name' => array('type'=>'string', 'null' => false, 'default' => NULL),
  6. 'username' => array('type'=>'string', 'null' => false, 'default' => NULL),
  7. 'created' => array('type'=>'date', 'null' => false, 'default' => NULL),
  8. 'indexes' => array('PRIMARY' => array('column' => 'id'))
  9. );
  10. public $records = array(array(
  11. 'id' => 1,
  12. 'name' => 'Alexander',
  13. 'username' => 'alke',
  14. 'created' => '2008-12-07'
  15. ));
  16. }