NewsCategoryFixture.php 350 B

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