/** * class_currency_history_sql.php * * @file * @brief abstract of the table public.currency_history */ /** * @class Currency_history_SQL * @brief abstract of the table public.currency_history */ class Currency_history_SQL extends Table_Data_SQL { function __construct(Database $p_cn, $p_id=-1) { $this->table="public.currency_history"; $this->primary_key="id"; /* * List of columns */ $this->name=array( "id"=>"id" , "ch_value"=>"ch_value" , "ch_from"=>"ch_from" , "currency_id"=>"currency_id" ); /* * Type of columns */ $this->type=array( "id"=>"numeric" , "ch_value"=>"numeric" , "ch_from"=>"date" , "currency_id"=>"numeric" ); $this->default=array( "id"=>"auto" ); $this->date_format="DD.MM.YYYY"; parent::__construct($p_cn, $p_id); } }