mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 09:38:23 +01:00
add somes fields on resource
This commit is contained in:
@@ -16,12 +16,21 @@
|
|||||||
|
|
||||||
CREATE TABLE llx_resource
|
CREATE TABLE llx_resource
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
entity integer DEFAULT 1 NOT NULL,
|
entity integer DEFAULT 1 NOT NULL,
|
||||||
ref varchar(255),
|
ref varchar(255),
|
||||||
description text,
|
asset_number varchar(255),
|
||||||
|
description text,
|
||||||
fk_code_type_resource varchar(32),
|
fk_code_type_resource varchar(32),
|
||||||
note_public text,
|
datec datetime DEFAULT NULL,
|
||||||
note_private text,
|
date_valid datetime DEFAULT NULL,
|
||||||
tms timestamp
|
fk_user_author integer DEFAULT NULL,
|
||||||
)ENGINE=innodb;
|
fk_user_modif integer DEFAULT NULL,
|
||||||
|
fk_user_valid integer DEFAULT NULL,
|
||||||
|
fk_statut smallint NOT NULL DEFAULT '0',
|
||||||
|
note_public text,
|
||||||
|
note_private text,
|
||||||
|
import_key varchar(14),
|
||||||
|
extraparams varchar(255), -- for stock other parameters with json format
|
||||||
|
tms timestamp
|
||||||
|
)ENGINE=innodb;
|
||||||
|
|||||||
Reference in New Issue
Block a user