mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-10 06:48:22 +02:00
2016-09-11 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'rdadmin/createdb.cpp' that caused obsolete fields in the 'SERVICES' table to be included when creating a new database.
This commit is contained in:
parent
4e602875a5
commit
dff01de517
@ -15472,3 +15472,6 @@
|
|||||||
in 'docs/scheduler_formats.ods'.
|
in 'docs/scheduler_formats.ods'.
|
||||||
* Added examples for adding inline traffic breaks and voice track
|
* Added examples for adding inline traffic breaks and voice track
|
||||||
markers to the sample files in 'docs/examples/'.
|
markers to the sample files in 'docs/examples/'.
|
||||||
|
2016-09-11 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in 'rdadmin/createdb.cpp' that caused obsolete fields
|
||||||
|
in the 'SERVICES' table to be included when creating a new database.
|
||||||
|
@ -930,16 +930,12 @@ bool CreateDb(QString name,QString pwd)
|
|||||||
MUS_EVENT_ID_OFFSET int,\
|
MUS_EVENT_ID_OFFSET int,\
|
||||||
MUS_EVENT_ID_LENGTH int,\
|
MUS_EVENT_ID_LENGTH int,\
|
||||||
MUS_ANNC_TYPE_OFFSET int,\
|
MUS_ANNC_TYPE_OFFSET int,\
|
||||||
MUS_ANNC_TYPE_LENGTH int, ");
|
MUS_ANNC_TYPE_LENGTH int)");
|
||||||
|
|
||||||
for(int i=0;i<167;i++) {
|
|
||||||
sql+=QString().sprintf("CLOCK%d char(64),",i);
|
|
||||||
}
|
|
||||||
sql+=QString("CLOCK167 char(64))");
|
|
||||||
if(!RunQuery(sql)) {
|
if(!RunQuery(sql)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Create GROUPS table
|
// Create GROUPS table
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user