]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp
Ticket 37. if (schemaVersion > 1) checking added in the RestoreTariff()
[stg.git] / projects / stargazer / plugins / store / firebird / firebird_store_tariffs.cpp
index f2d708797b442c8d09e59953968f62aa763f1e48..2ca60e7fc4672e62310c659a35f7e085c94a3a95 100644 (file)
@@ -175,7 +175,7 @@ try
                     free = ?, \
                     passive_cost = ?, \
                     traff_type = ?, \
-                    period = ? \
+                    period = ?, \
                     change_policy = ? \
                     where pk_tariff = ?");
             st->Set(1, td.tariffConf.fee);
@@ -307,6 +307,8 @@ try
     td->tariffConf.traffType = TARIFF::IntToTraffType(Get<int>(st, 6));
     if (schemaVersion > 0)
         td->tariffConf.period = TARIFF::StringToPeriod(Get<std::string>(st, 7));
+    if (schemaVersion > 1)
+        td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(Get<std::string>(st, 8));
     st->Close();
     st->Prepare("select * from tb_tariffs_params where fk_tariff = ?");
     st->Set(1, id);