Standardize columns

This commit is contained in:
Laurent Destailleur 2020-01-09 20:11:03 +01:00
parent f25ac50e3b
commit e8e82ca08c
2 changed files with 4 additions and 1 deletions

View File

@ -49,9 +49,10 @@ create table llx_object_lang
)ENGINE=innodb;
ALTER TABLE llx_object_lang ADD UNIQUE INDEX uk_object_lang (fk_object, type_object, property, lang);
ALTER TABLE llx_subscription ADD COLUMN fk_user_creat integer DEFAULT NULL;
ALTER TABLE llx_subscription ADD COLUMN fk_user_valid integer DEFAULT NULL;

View File

@ -27,5 +27,7 @@ create table llx_subscription
datef date,
subscription double(24,8),
fk_bank integer DEFAULT NULL,
fk_user_creat integer DEFAULT NULL,
fk_user_valid integer DEFAULT NULL,
note text
)ENGINE=innodb;