cmc-sales/app/tests/fixtures/currency_fixture.php

22 lines
817 B
PHP
Raw Permalink Normal View History

<?php
/* SVN FILE: $Id$ */
/* Currency Fixture generated on: 2008-10-03 00:10:17 : 1222957517*/
class CurrencyFixture extends CakeTestFixture {
var $name = 'Currency';
var $table = 'currencies';
var $fields = array(
'id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'key' => 'primary'),
'name' => array('type'=>'string', 'null' => false, 'default' => NULL),
'symbol' => array('type'=>'string', 'null' => false, 'default' => NULL, 'length' => 1),
'iso4217' => array('type'=>'string', 'null' => false, 'default' => NULL, 'length' => 3),
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
);
var $records = array(array(
'id' => 1,
'name' => 'Lorem ipsum dolor sit amet',
'symbol' => 'Lorem ipsum dolor sit ame',
'iso4217' => 'L'
));
}
?>