Atlas sql migrations

From UVOO Tech Wiki
Revision as of 01:48, 14 April 2024 by Busk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

https://github.com/ariga/atlas

mkdir migrations

atlas schema inspect --url sqlite://foo.db > migrations/init.hcl
atlas schema diff --to file://migrations --from sqlite://foo.db --dev-url sqlite://foo.db
atlas schema apply --to file://migrations --url sqlite://foo3.db
atlas schema inspect --url sqlite://ucms.db --format '{{ sql . }}'

atlas schema diff --to file://migrations --from sqlite://foo.db --dev-url sqlite://foo.db

atlas schema diff --from file://migrations --to sqlite://foo.db --dev-url sqlite://bar.db