noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 01/16: create currency SQL tables


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 01/16: create currency SQL tables
Date: Mon, 7 May 2018 15:47:33 -0400 (EDT)

sparkyx pushed a commit to branch r700-currency
in repository noalyss.

commit 71962e728bcae12d1c53a2474e73217bc9e7a7f6
Author: Dany De Bontridder <address@hidden>
Date:   Thu Apr 19 10:23:19 2018 +0200

    create currency SQL tables
---
 sql/upgrade.sql | 35 ++++++++++++++++++++++++++---------
 1 file changed, 26 insertions(+), 9 deletions(-)

diff --git a/sql/upgrade.sql b/sql/upgrade.sql
index f3ed35a..0aeb267 100644
--- a/sql/upgrade.sql
+++ b/sql/upgrade.sql
@@ -1,9 +1,26 @@
-create view v_tva_rate as select 
-       tva_id,
-       tva_rate,
-       tva_label,
-       tva_comment,
-       split_part(tva_poste,',',1) as tva_purchase,
-       split_part(tva_poste,',',2) as tva_sale,
-       tva_both_side 
-from tva_rate;
+-- Drop table
+
+-- DROP TABLE public.currency
+
+CREATE TABLE public.currency (
+       id serial NOT NULL,
+       cr_code_iso varchar(10) NULL,
+       CONSTRAINT currency_pk PRIMARY KEY (id),
+       CONSTRAINT currency_un UNIQUE (cr_code_iso)
+);
+
+-- Drop table
+
+-- DROP TABLE public.currency_history
+
+CREATE TABLE public.currency_history (
+       id serial NOT NULL,
+       ch_value numeric(6) NOT NULL,
+       ch_from timestamp NOT NULL,
+       currency_id int4 NOT NULL,
+       CONSTRAINT currency_history_pk PRIMARY KEY (id),
+       CONSTRAINT currency_history_currency_fk FOREIGN KEY (id) REFERENCES 
currency(id)
+)
+;
+
+-- Ajouter commentaire sur colonne



reply via email to

[Prev in Thread] Current Thread [Next in Thread]