RevisionUserFixture.php 634 B

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