[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 01/218: create currency SQL tables
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 01/218: create currency SQL tables |
Date: |
Thu, 12 Sep 2019 15:58:28 -0400 (EDT) |
sparkyx pushed a commit to branch entreprise
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
- [Noalyss-commit] [noalyss] branch entreprise created (now 0030779), Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 01/218: create currency SQL tables,
Dany De Bontridder <=
- [Noalyss-commit] [noalyss] 02/218: Currency : add PHP Class for SQL table, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 03/218: Currency : create view + add currency name to table currency, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 06/218: Currency : add ajax call to delete one rate , add documentation , remove debug info, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 12/218: Action_Code : add validate, cancel and modify icon, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 15/218: insert_jrnx : add debug, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 19/218: Task #448 : currency : cosmetic operation detail, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 07/218: Currency : add menu for currency, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 11/218: Currency : SQL menu change, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 14/218: INum : add function onchange with inplace edit, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 10/218: Currency : add SQL constraint + doc, Dany De Bontridder, 2019/09/12