Fixed error in oracle db when creates a specific table.
This commit is contained in:
parent
a018d6c6c2
commit
74febc3da8
|
@ -1958,9 +1958,9 @@ CREATE OR REPLACE TRIGGER tcategory_inc BEFORE INSERT ON tcategory REFERENCING N
|
|||
-- ---------------------------------------------------------------------
|
||||
-- Table `tupdate_settings`
|
||||
-- ---------------------------------------------------------------------
|
||||
CREATE TABLE tupdate_settings (
|
||||
"key" VARCHAR2(255) DEFAULT '' PRIMARY KEY,
|
||||
value VARCHAR2(255) DEFAULT ''
|
||||
CREATE TABLE tupdate_settings (
|
||||
"key" VARCHAR2(255) DEFAULT '' PRIMARY KEY,
|
||||
"value" VARCHAR2(255) DEFAULT ''
|
||||
);
|
||||
|
||||
-- This sequence will not work with the 'insert_id' procedure
|
||||
|
|
Loading…
Reference in New Issue