Renamed ScheduleItem class to ScheduleGroup.
Added support for adding playlists to the scheduler. Also added count() and getItems() functions. Added "clip_length" to the scheduler database table, no doubt it will come in handy. Fixed bug in Playlist where it didnt remember it's own ID after creation. Updated documention for the playlist.
This commit is contained in:
parent
202fcbd254
commit
47e0233e47
10 changed files with 286 additions and 180 deletions
|
@ -56,6 +56,8 @@ ALTER TABLE cc_schedule RENAME playlist TO playlist_id;
|
|||
ALTER TABLE cc_schedule ALTER playlist_id TYPE integer;
|
||||
ALTER TABLE cc_schedule ADD COLUMN group_id integer;
|
||||
ALTER TABLE cc_schedule ADD COLUMN file_id integer;
|
||||
ALTER TABLE cc_schedule
|
||||
ADD COLUMN clip_length time without time zone DEFAULT '00:00:00.000000';
|
||||
ALTER TABLE cc_schedule
|
||||
ADD COLUMN fade_in time without time zone DEFAULT '00:00:00.000';
|
||||
ALTER TABLE cc_schedule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue