Fixed the field type of server_name in table treport_content (CLOB to VARCHAR2(1000))

This commit is contained in:
mdtrooper 2015-06-15 16:44:31 +02:00
parent 05f27a4bdc
commit a71ab9b19a
1 changed files with 1 additions and 1 deletions

View File

@ -1259,7 +1259,7 @@ CREATE TABLE treport_content (
style CLOB DEFAULT '',
id_group NUMBER(10, 0) DEFAULT 0,
id_module_group NUMBER(10, 0) DEFAULT 0,
server_name CLOB DEFAULT ''
server_name VARCHAR2(1000) default ''
);
CREATE SEQUENCE treport_content_s INCREMENT BY 1 START WITH 1;