Merge pull request #5392 from hregis/develop_origin

Fix: missing rename field "shortname" to "ref"
This commit is contained in:
Laurent Destailleur 2016-06-23 20:24:20 +02:00 committed by GitHub
commit 2988a38786

View File

@ -136,6 +136,7 @@ CREATE TABLE llx_website
tms timestamp
) ENGINE=innodb;
ALTER TABLE llx_website ADD COLUMN fk_default_home integer;
ALTER TABLE llx_website CHANGE COLUMN shortname ref varchar(24) NOT NULL;
ALTER TABLE llx_website ADD UNIQUE INDEX uk_website_ref (ref, entity);
CREATE TABLE llx_website_page