v0.10.0 release #702
kvch
announced in
Announcements
Replies: 1 comment
-
|
Thanks for the mention @kvch! Nice work all! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
⚡ Highlights
convertto translate ORM SQL migrations scripts into pgroll migrationsACCESS_EXCLUSIVEtable lock when addingUNIQUEcolumnsACCESS_EXCLUSIVEtable lock when adding volatileDEFAULTs to columnsThanks to first time contributors 🙏 ❤️ :
🔴 Breaking changes
Previously,
create_indexexpected a list of strings incolumns:{ "name": "10_create_index", "operations": [ { "create_index": { "table": "employees", "columns": ["salary"] } } ] }To support advanced index field settings like
sort,null,collateandopclass,columnsmust be a map:{ "name": "10_create_index", "operations": [ { "create_index": { "table": "employees", "columns": { "salary": {} } } } ] }See the complete changelog for more details: https://github.com/xataio/pgroll/releases/tag/v0.10.0
Beta Was this translation helpful? Give feedback.
All reactions