CC-2607: Ability to adjust stream bitrate, type, etc from UI interface
- created table cc_stream_setting and it's initial entries - pypo installation will generate liquidsoap.cfg on install time based on information on cc_stream_setting table
This commit is contained in:
parent
1c81d0d238
commit
13285fdd63
16 changed files with 1952 additions and 3 deletions
|
@ -315,4 +315,9 @@
|
|||
<column name="isocode" phpName="DbIsoCode" primaryKey="true" type="CHAR" size="3" required="true"/>
|
||||
<column name="name" phpName="DbName" type="VARCHAR" size="255" required="true"/>
|
||||
</table>
|
||||
<table name="cc_stream_setting" phpName="CcStreamSetting">
|
||||
<column name="keyname" phpName="DbKeyName" primaryKey="true" type="VARCHAR" size="64" required="true"/>
|
||||
<column name="value" phpName="DbValue" type="VARCHAR" size="255" required="false"/>
|
||||
<column name="type" phpName="DbType" type="VARCHAR" size="16" required="true"/>
|
||||
</table>
|
||||
</database>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue