mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
5 lines
246 B
MySQL
5 lines
246 B
MySQL
|
-- This migration adds versioning to metadata, used for optimistic locking in UIs.
|
||
|
-- TODO: Are there changes required in catalog_versions.txt
|
||
|
|
||
|
ALTER TABLE hdb_catalog.hdb_metadata ADD COLUMN "resource_version" INTEGER NOT NULL DEFAULT 1 UNIQUE;
|