Fixed error in oracle db when creates a specific table.

This commit is contained in:
Arturo Gonzalez Diaz 2015-08-27 12:23:30 +02:00
parent a018d6c6c2
commit 74febc3da8
1 changed files with 3 additions and 3 deletions

View File

@ -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