diff --git a/bootstrap/sql/migrations/native/1.5.9/mysql/postDataMigrationSQLScript.sql b/bootstrap/sql/migrations/native/1.5.9/mysql/postDataMigrationSQLScript.sql index e69de29bb2d..6dc0647d20b 100644 --- a/bootstrap/sql/migrations/native/1.5.9/mysql/postDataMigrationSQLScript.sql +++ b/bootstrap/sql/migrations/native/1.5.9/mysql/postDataMigrationSQLScript.sql @@ -0,0 +1 @@ +ALTER TABLE apps_extension_time_series ADD COLUMN appName VARCHAR(256) GENERATED ALWAYS AS (json ->> '$.appName') STORED NOT NULL; diff --git a/bootstrap/sql/migrations/native/1.5.9/postgres/postDataMigrationSQLScript.sql b/bootstrap/sql/migrations/native/1.5.9/postgres/postDataMigrationSQLScript.sql index e69de29bb2d..4fd44e063d1 100644 --- a/bootstrap/sql/migrations/native/1.5.9/postgres/postDataMigrationSQLScript.sql +++ b/bootstrap/sql/migrations/native/1.5.9/postgres/postDataMigrationSQLScript.sql @@ -0,0 +1 @@ +ALTER TABLE apps_extension_time_series ADD COLUMN appName VARCHAR(256) GENERATED ALWAYS AS (json ->> 'appName') STORED NOT NULL;