2018-07-09 Fred Gleason <fredg@paravelsystems.com>

* Added a 'RULE_LINES' table to the database.
	* Incremented the database version to 292.
This commit is contained in:
Fred Gleason
2018-07-10 08:30:06 -04:00
parent 1008b69076
commit 08c01373cb
10 changed files with 194 additions and 52 deletions

View File

@@ -71,6 +71,7 @@ EXTRA_DIST = audio_cards.txt\
replicator_map.txt\
replicators.txt\
reports.txt\
rule_lines.txt\
service_clocks.txt\
services.txt\
sources.txt\

View File

@@ -0,0 +1,14 @@
Rules Lines Table Layout for Rivendell
The RULE_LINES table holds the music scheduler rules for each clock.
FIELD NAME TYPE REMARKS
------------------------------------------------------------------------
ID int(11) signed Primary key, auto-increment
CLOCK_NAME char(64) From CLOCKS.NAME
CODE varchar(10) from SCHED_CODES.CODE
MAX_ROW int(10) unsigned
MIN_WAIT int(10) unsigned
NOT_AFTER varchar(10)
OR_AFTER varchar(10)
OR_AFTER_II varchar(10)