JsonableCommentFixture.php 485 B

123456789101112131415
  1. <?php
  2. class JsonableCommentFixture extends CakeTestFixture {
  3. public $fields = array(
  4. 'id' => array('type' => 'integer', 'key' => 'primary'),
  5. 'comment' => array('type' => 'string', 'length' => 255, 'null' => false),
  6. 'url' => array('type' => 'string', 'length' => 255, 'null' => false),
  7. 'title' => array('type' => 'string', 'length' => 255, 'null' => false),
  8. 'details' => array('type' => 'string', 'length' => 255, 'null' => false)
  9. );
  10. public $records = array(
  11. );
  12. }