RevisionTagFixture.php 518 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. class RevisionTagFixture extends CakeTestFixture {
  3. public $fields = [
  4. 'id' => [
  5. 'type' => 'integer',
  6. 'null' => false,
  7. 'default' => null,
  8. 'key' => 'primary'],
  9. 'title' => ['type' => 'string', 'null' => false, 'default' => null],
  10. 'indexes' => ['PRIMARY' => ['column' => 'id']]];
  11. public $records = [
  12. [
  13. 'id' => 1,
  14. 'title' => 'Fun',
  15. ],
  16. [
  17. 'id' => 2,
  18. 'title' => 'Hard'
  19. ],
  20. [
  21. 'id' => 3,
  22. 'title' => 'Trick'
  23. ],
  24. [
  25. 'id' => 4,
  26. 'title' => 'News'
  27. ],
  28. ];
  29. }