Skip to content

Commit

Permalink
NEW Complete table llx_ecm_files with field generated_or_uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jul 15, 2016
1 parent 409d6df commit 74f28b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion htdocs/install/mysql/migration/4.0.0-5.0.0.sql
Expand Up @@ -22,7 +22,9 @@
-- -- VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup);


ALTER TABLE llx_website ADD COLUMN virtualhost varchar(255) after fk_default_home;
ALTER TABLE llx_website ADD COLUMN virtualhost varchar(255) after fk_default_home;

ALTER TABLE llx_ecm_files ADD COLUMN gen_or_uploaded varchar(12) after cover;

DROP TABLE llx_document_generator;
DROP TABLE llx_ecm_documents;
Expand Down
3 changes: 2 additions & 1 deletion htdocs/install/mysql/tables/llx_ecm_files.sql
Expand Up @@ -27,7 +27,8 @@ CREATE TABLE llx_ecm_files
description text,
keywords text, -- list of keywords, separated with comma
cover text, -- is this file a file to use for a cover
extraparams varchar(255), -- for stock other parameters with json format
gen_or_uploaded varchar(12), -- 'generated' or 'uploaded'
extraparams varchar(255), -- for stocking other parameters with json format
date_c datetime,
date_m timestamp,
fk_user_c integer,
Expand Down

0 comments on commit 74f28b3

Please sign in to comment.