Changed tlayout_template name table to varchar 600

This commit is contained in:
manuel.montes 2018-10-24 12:39:58 +02:00
parent f4add9a7f8
commit 9d7f063ef2
2 changed files with 5 additions and 2 deletions

View File

@ -13,6 +13,4 @@ ALTER TABLE tmetaconsole_setup ADD COLUMN `meta_dbhost` text;
ALTER TABLE tmetaconsole_setup ADD COLUMN `meta_dbport` text;
ALTER TABLE tmetaconsole_setup ADD COLUMN `meta_dbname` text;
ALTER TABLE tlayout_template MODIFY `name` varchar(600) NOT NULL;
COMMIT;

View File

@ -0,0 +1,5 @@
START TRANSACTION;
ALTER TABLE tlayout_template MODIFY `name` varchar(600) NOT NULL;
COMMIT;