diff options
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch/ids.sql')
-rw-r--r-- | upgrades/dbpatches/1.3/postgresql/patch/ids.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/ids.sql b/upgrades/dbpatches/1.3/postgresql/patch/ids.sql index 9080273f..8e49ef0e 100644 --- a/upgrades/dbpatches/1.3/postgresql/patch/ids.sql +++ b/upgrades/dbpatches/1.3/postgresql/patch/ids.sql @@ -1,7 +1,7 @@ CREATE TABLE ids ( nodeid integer DEFAULT '0' NOT NULL, - table_name varchar(64) DEFAULT '' NOT NULL, - field_name varchar(64) DEFAULT '' NOT NULL, - nextid bigint unsigned DEFAULT '0' NOT NULL, + table_name varchar(64) DEFAULT '' NOT NULL, + field_name varchar(64) DEFAULT '' NOT NULL, + nextid bigint DEFAULT '0' NOT NULL, PRIMARY KEY (nodeid,table_name,field_name) -) type=InnoDB; +); |