Fixed upgrades

This commit is contained in:
drigato 2014-11-04 13:33:20 -05:00
parent f147fb34bb
commit 2f16385b53
3 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,7 @@
CREATE TABLE cloud_file
(
id serial NOT NULL,
resource_id text NOT NULL,
resource_id text NOT NULL default nextval('cloud_file_id_seq'::regclass),
cc_file_id integer,
CONSTRAINT cloud_file_pkey PRIMARY KEY (id),
CONSTRAINT "cloud_file_FK_1" FOREIGN KEY (cc_file_id)