nouvelle version des tables posgtresql

beautification du code, tout les parametres en MAJUSCULES
This commit is contained in:
opensides
2004-10-10 10:25:57 +00:00
parent 509f0a2eee
commit 9b027fbc50
31 changed files with 175 additions and 218 deletions

View File

@@ -25,7 +25,7 @@
create table llx_user
(
rowid SERIAL PRIMARY KEY,
datec timestamp,
datec timestamp without time zone,
tms timestamp,
login varchar(8),
pass varchar(32),
@@ -33,12 +33,12 @@ create table llx_user
firstname varchar(50),
code varchar(4),
email varchar(255),
admin smallint default 0,
admin smallint DEFAULT 0,
webcal_login varchar(25),
module_comm smallint default 1,
module_compta smallint default 1,
fk_societe integer default 0,
fk_socpeople integer default 0,
module_comm smallint DEFAULT 1,
module_compta smallint DEFAULT 1,
fk_societe integer DEFAULT 0,
fk_socpeople integer DEFAULT 0,
note text
);