I have a question about v1.14.0: - It includes mig...
# spicedb
w
I have a question about v1.14.0: - It includes migrations for the Postgres datastore, which are deleting the
created_transaction
column and adding a new
created_xid
(as well as other things). - v1.13.0 relies on
created_transaction
, v1.14.0 relies on
created_xid
Doesn't that cause backward/forward compatibility issues? - If the migration is ran as a pre-update hook, SpiceDB will be failing while
created_transaction
doesn't exist anymore but v1.13.0 is still running - If the migration is ran as a post-update hook, SpiceDB will be failing while
created_xid
doesn't exist yet but v1.14.0 is already running