OrderItemFixture.php 282 B

12345678910111213
  1. <?php
  2. class OrderItemFixture extends CakeTestFixture {
  3. public $fields = array(
  4. 'id' => array('type' => 'integer', 'key' => 'primary'),
  5. 'active_shipment_id' => array('type' => 'integer'),
  6. );
  7. public $records = array(
  8. array ('id' => 50, 'active_shipment_id' => 320)
  9. );
  10. }