Currency : create view + add currency name to table currency

This commit is contained in:
Dany De Bontridder 2018-04-20 19:12:44 +02:00
parent ab2b8ac616
commit 9733fadf91
4 changed files with 62 additions and 1 deletions

View file

@ -40,6 +40,7 @@ class Currency_SQL extends Noalyss_SQL
$this->name=array(
"id"=>"id"
, "cr_code_iso"=>"cr_code_iso"
,"cr_name"=>"cr_name"
);
/*
* Type of columns
@ -47,6 +48,7 @@ class Currency_SQL extends Noalyss_SQL
$this->type=array(
"id"=>"numeric"
, "cr_code_iso"=>"text"
, "cr_name"=>"text"
);