Fix tms
This commit is contained in:
parent
636a01725e
commit
b7b3a25aba
@ -28,6 +28,6 @@ CREATE TABLE llx_asset_accountancy_codes_economic(
|
|||||||
proceeds_from_sales varchar(32),
|
proceeds_from_sales varchar(32),
|
||||||
vat_collected varchar(32),
|
vat_collected varchar(32),
|
||||||
vat_deductible varchar(32),
|
vat_deductible varchar(32),
|
||||||
tms timestamp,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_user_modif integer
|
fk_user_modif integer
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|||||||
@ -24,6 +24,6 @@ CREATE TABLE llx_asset_accountancy_codes_fiscal(
|
|||||||
endowment_accelerated_depreciation varchar(32),
|
endowment_accelerated_depreciation varchar(32),
|
||||||
provision_accelerated_depreciation varchar(32),
|
provision_accelerated_depreciation varchar(32),
|
||||||
|
|
||||||
tms timestamp,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_user_modif integer
|
fk_user_modif integer
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|||||||
@ -29,6 +29,6 @@ CREATE TABLE llx_asset_depreciation(
|
|||||||
accountancy_code_debit varchar(32),
|
accountancy_code_debit varchar(32),
|
||||||
accountancy_code_credit varchar(32),
|
accountancy_code_credit varchar(32),
|
||||||
|
|
||||||
tms timestamp,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_user_modif integer
|
fk_user_modif integer
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|||||||
@ -30,6 +30,6 @@ CREATE TABLE llx_asset_depreciation_options_economic(
|
|||||||
amount_base_deductible_ht double(24,8),
|
amount_base_deductible_ht double(24,8),
|
||||||
total_amount_last_depreciation_ht double(24,8),
|
total_amount_last_depreciation_ht double(24,8),
|
||||||
|
|
||||||
tms timestamp,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_user_modif integer
|
fk_user_modif integer
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|||||||
@ -29,6 +29,6 @@ CREATE TABLE llx_asset_depreciation_options_fiscal(
|
|||||||
amount_base_deductible_ht double(24,8),
|
amount_base_deductible_ht double(24,8),
|
||||||
total_amount_last_depreciation_ht double(24,8),
|
total_amount_last_depreciation_ht double(24,8),
|
||||||
|
|
||||||
tms timestamp,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_user_modif integer
|
fk_user_modif integer
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|||||||
@ -17,8 +17,8 @@
|
|||||||
|
|
||||||
create table llx_asset_extrafields
|
create table llx_asset_extrafields
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_object integer NOT NULL,
|
fk_object integer NOT NULL,
|
||||||
import_key varchar(14) -- import key
|
import_key varchar(14) -- import key
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|||||||
@ -25,7 +25,7 @@ CREATE TABLE llx_asset_model(
|
|||||||
note_public text,
|
note_public text,
|
||||||
note_private text,
|
note_private text,
|
||||||
date_creation datetime NOT NULL,
|
date_creation datetime NOT NULL,
|
||||||
tms timestamp,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_user_creat integer NOT NULL,
|
fk_user_creat integer NOT NULL,
|
||||||
fk_user_modif integer,
|
fk_user_modif integer,
|
||||||
import_key varchar(14),
|
import_key varchar(14),
|
||||||
|
|||||||
@ -17,8 +17,8 @@
|
|||||||
|
|
||||||
CREATE TABLE llx_asset_model_extrafields
|
CREATE TABLE llx_asset_model_extrafields
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
fk_object integer NOT NULL,
|
fk_object integer NOT NULL,
|
||||||
import_key varchar(14) -- import key
|
import_key varchar(14) -- import key
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|||||||
@ -18,8 +18,8 @@
|
|||||||
CREATE TABLE llx_c_asset_disposal_type
|
CREATE TABLE llx_c_asset_disposal_type
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
entity integer NOT NULL DEFAULT 1,
|
entity integer NOT NULL DEFAULT 1,
|
||||||
code varchar(16) NOT NULL,
|
code varchar(16) NOT NULL,
|
||||||
label varchar(50) NOT NULL,
|
label varchar(50) NOT NULL,
|
||||||
active integer DEFAULT 1 NOT NULL
|
active integer DEFAULT 1 NOT NULL
|
||||||
)ENGINE=innodb;
|
)ENGINE=innodb;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user