array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary', 'collate' => null, 'comment' => ''), 'name' => array('type' => 'string', 'null' => false, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'), 'code' => array('type' => 'string', 'null' => false, 'length' => 3, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'), 'symbol_left' => array('type' => 'string', 'null' => true, 'length' => 12, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'), 'symbol_right' => array('type' => 'string', 'null' => true, 'length' => 12, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'), 'decimal_places' => array('type' => 'string', 'null' => true, 'length' => 1, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'), 'value' => array('type' => 'float', 'null' => true, 'default' => '0.0000', 'length' => '9,4', 'collate' => null, 'comment' => ''), 'base' => array('type' => 'boolean', 'null' => false, 'default' => '0', 'collate' => null, 'comment' => 'is base currency'), 'active' => array('type' => 'boolean', 'null' => false, 'default' => '0', 'collate' => null, 'comment' => ''), 'modified' => array('type' => 'datetime', 'null' => false, 'default' => null, 'collate' => null, 'comment' => ''), 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)), 'tableParameters' => array() ); /** * Records * * @var array */ public $records = array( array( 'id' => '1', 'name' => 'US Dollar', 'code' => 'USD', 'symbol_left' => '$', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '1.4146', 'base' => 0, 'active' => 1, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '2', 'name' => 'Euro', 'code' => 'EUR', 'symbol_left' => '€', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '1.0000', 'base' => 1, 'active' => 1, 'modified' => '2009-11-23 12:45:15' ), array( 'id' => '3', 'name' => 'British Pounds', 'code' => 'GBP', 'symbol_left' => '£', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '0.8775', 'base' => 0, 'active' => 1, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '4', 'name' => 'Schweizer Franken', 'code' => 'CHF', 'symbol_left' => '', 'symbol_right' => 'Fr.', 'decimal_places' => '2', 'value' => '1.1577', 'base' => 0, 'active' => 1, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '5', 'name' => 'Australien Dollar', 'code' => 'AUD', 'symbol_left' => '', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '1.3264', 'base' => 0, 'active' => 0, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '6', 'name' => 'Canadian Dollar', 'code' => 'CAD', 'symbol_left' => '', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '1.3549', 'base' => 0, 'active' => 0, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '7', 'name' => 'Japanese Yen', 'code' => 'JPY', 'symbol_left' => '', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '111.9700', 'base' => 0, 'active' => 0, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '9', 'name' => 'Mexican Peso', 'code' => 'MXN', 'symbol_left' => '', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '16.5510', 'base' => 0, 'active' => 0, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '10', 'name' => 'Norwegian Krone', 'code' => 'NOK', 'symbol_left' => '', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '7.8665', 'base' => 0, 'active' => 0, 'modified' => '2011-07-16 15:12:33' ), array( 'id' => '11', 'name' => 'Swedish Krona', 'code' => 'SEK', 'symbol_left' => '', 'symbol_right' => '', 'decimal_places' => '2', 'value' => '9.2121', 'base' => 0, 'active' => 0, 'modified' => '2011-07-16 15:12:33' ), ); }