View | Details | Raw Unified | Return to bug 19882
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_19882_Add_novelist_staff_client_profile.perl (-2 / +1 lines)
Lines 1-6 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('NovelistSelectStaffProfile',NULL,'Novelist staff client user Profile',NULL,'free')");
3
    $dbh->do("INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NovelistSelectStaffProfile',NULL,'Novelist staff client user Profile',NULL,'free')");
4
4
5
    SetVersion( $DBversion );
5
    SetVersion( $DBversion );
6
    print "Upgrade to $DBversion done (Bug 19882 - Add Novelist Staff Client Profile)\n";
6
    print "Upgrade to $DBversion done (Bug 19882 - Add Novelist Staff Client Profile)\n";
7
- 

Return to bug 19882