BlogPostFixture.php 374 B

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