Fixed the field type of server_name in table treport_content (CLOB to VARCHAR2(1000))
This commit is contained in:
parent
05f27a4bdc
commit
a71ab9b19a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue