SAAS-447: Cloud Storage
Added resource_id column to cc_files table
This commit is contained in:
parent
a12ebf2cb1
commit
aeb3bb7aa0
6 changed files with 96 additions and 14 deletions
|
@ -82,6 +82,7 @@
|
|||
<column name="hidden" phpName="DbHidden" type="BOOLEAN" defaultValue="false"/>
|
||||
<column name="is_scheduled" phpName="DbIsScheduled" type="BOOLEAN" defaultValue="false"/>
|
||||
<column name="is_playlist" phpName="DbIsPlaylist" type="BOOLEAN" defaultValue="false"/>
|
||||
<column name="resource_id" phpName="DbResourceId" type="LONGVARCHAR" required="false"/>
|
||||
<foreign-key foreignTable="cc_subjs" phpName="FkOwner" name="cc_files_owner_fkey">
|
||||
<reference local="owner_id" foreign="id"/>
|
||||
</foreign-key>
|
||||
|
|
|
@ -100,6 +100,7 @@ CREATE TABLE "cc_files"
|
|||
"hidden" BOOLEAN default 'f',
|
||||
"is_scheduled" BOOLEAN default 'f',
|
||||
"is_playlist" BOOLEAN default 'f',
|
||||
"resource_id" TEXT,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue