diff --git a/backend/migrations/20230510101952_jsonb_to_json.down.sql b/backend/migrations/20230510101952_jsonb_to_json.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20230510101952_jsonb_to_json.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20230510101952_jsonb_to_json.up.sql b/backend/migrations/20230510101952_jsonb_to_json.up.sql new file mode 100644 index 0000000000..298d1cfe8b --- /dev/null +++ b/backend/migrations/20230510101952_jsonb_to_json.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +ALTER TABLE app_version +ALTER COLUMN value TYPE json; \ No newline at end of file