JsonableCommentFixture.php 450 B

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