Merge branch 'master' into CC-2301
This commit is contained in:
commit
92ef0608d6
673 changed files with 53058 additions and 259758 deletions
|
@ -132,6 +132,10 @@
|
|||
<column name="live_stream_using_custom_auth" phpName="DbLiveStreamUsingCustomAuth" type="BOOLEAN" required="false" defaultValue="false"/>
|
||||
<column name="live_stream_user" phpName="DbLiveStreamUser" type="VARCHAR" size="255" required="false"/>
|
||||
<column name="live_stream_pass" phpName="DbLiveStreamPass" type="VARCHAR" size="255" required="false"/>
|
||||
<column name="linked" phpName="DbLinked" type="BOOLEAN" required="true" defaultValue="false" />
|
||||
<column name="is_linkable" phpName="DbIsLinkable" type="BOOLEAN" required="true" defaultValue="true" />
|
||||
<!-- A show is_linkable if it has never been linked before. Once a show becomes unlinked
|
||||
it can not be linked again -->
|
||||
</table>
|
||||
<table name="cc_show_instances" phpName="CcShowInstances">
|
||||
<column name="id" phpName="DbId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
|
||||
|
@ -324,6 +328,11 @@
|
|||
<column name="instance_id" phpName="DbInstanceId" type="INTEGER" required="true"/>
|
||||
<column name="playout_status" phpName="DbPlayoutStatus" type="SMALLINT" required="true" defaultValue="1"/>
|
||||
<column name="broadcasted" phpName="DbBroadcasted" type="SMALLINT" required="true" defaultValue="0"/>
|
||||
<!-- Broadcasted is set to 1 when show and master source are not on.
|
||||
We need to know this for logging playout history. (It only gets logged when
|
||||
broadcasted = 1)
|
||||
-->
|
||||
<column name="position" phpName="DbPosition" type="INTEGER" required="true" default="0" />
|
||||
<!-- This foreign key is still useful even though it may seem we don't ever delete cc_show_instances anymore.
|
||||
We will do delete them in some cases (when editing a show and changing the repeating days of the week
|
||||
for example. \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue