]> git.stg.codes - stg.git/commitdiff
Ticket 37. The 'change_policy_timeout' field added to update tb_tariffs
authorElena Mamontova <helenh463@gmail.com>
Wed, 19 Oct 2016 08:13:24 +0000 (11:13 +0300)
committerElena Mamontova <helenh463@gmail.com>
Wed, 19 Oct 2016 08:13:24 +0000 (11:13 +0300)
query if schemaVersion > 1, in st->Set(7, id) 7 changed to 8 in
SaveTariff() function.

projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp

index 72d838512b1ee38306ab2efb69b9591d4a0a37a5..cef5b203c87822987eccb01aa7c5ea576d700b05 100644 (file)
@@ -160,7 +160,8 @@ try
     if (schemaVersion > 0)
         query += ", period = ?";
     if (schemaVersion > 1)
     if (schemaVersion > 0)
         query += ", period = ?";
     if (schemaVersion > 1)
-        query += ", change_policy = ?";
+        query += ", change_policy = ?, \
+                    change_policy_timeout = ?";
 
     query += " where pk_tariff = ?";
 
 
     query += " where pk_tariff = ?";
 
@@ -180,7 +181,7 @@ try
         st->Set(7, policyTimeout);
         }
 
         st->Set(7, policyTimeout);
         }
 
-    st->Set(7, id);
+    st->Set(8, id);
     st->Execute();
     st->Close();
 
     st->Execute();
     st->Close();