Upgrade sql was missing the storage_backend column
This commit is contained in:
parent
28a06136aa
commit
6ee97d9c53
|
@ -2,6 +2,7 @@ CREATE TABLE cloud_file
|
||||||
(
|
(
|
||||||
id serial NOT NULL,
|
id serial NOT NULL,
|
||||||
resource_id text NOT NULL,
|
resource_id text NOT NULL,
|
||||||
|
storage_backend text NOT NULL,
|
||||||
cc_file_id integer NOT NULL,
|
cc_file_id integer NOT NULL,
|
||||||
CONSTRAINT cloud_file_pkey PRIMARY KEY (id),
|
CONSTRAINT cloud_file_pkey PRIMARY KEY (id),
|
||||||
CONSTRAINT "cloud_file_FK_1" FOREIGN KEY (cc_file_id)
|
CONSTRAINT "cloud_file_FK_1" FOREIGN KEY (cc_file_id)
|
||||||
|
|
Loading…
Reference in New Issue