Browse Source

Add additional_data jsonb column to roasting_log table

Neal Wilson 7 years ago
parent
commit
f37ca672e9
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      config/Windows/navigation.xml

+ 1
- 0
config/Windows/navigation.xml View File

318
         var DBUpdate19 = function() {
318
         var DBUpdate19 = function() {
319
             var query = new QSqlQuery;
319
             var query = new QSqlQuery;
320
             query.exec("ALTER TABLE roasting_specification ADD COLUMN spec jsonb");
320
             query.exec("ALTER TABLE roasting_specification ADD COLUMN spec jsonb");
321
+            query.exec("ALTER TABLE roasting_log ADD COLUMN additional_data jsonb");
321
             query.exec("UPDATE TypicaFeatures SET version = 8 WHERE feature = 'base-features'");
322
             query.exec("UPDATE TypicaFeatures SET version = 8 WHERE feature = 'base-features'");
322
             query = query.invalidate();
323
             query = query.invalidate();
323
         };
324
         };

Loading…
Cancel
Save