You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, version_id is generated from txid_current(), which is not portable between database installations. As a result, it's not possible to simply dump data from one server to another, because the version ID generation may conflict.
One way to around this issue would be to add a database_version_id, which would be incremented upon a database migration. SavageLogMixin would need to add a database_version_id column, and there would need to be a separate DatabaseVersionId table with a single value (which defaults to 0/1).
The text was updated successfully, but these errors were encountered:
Issue by luislew
Monday Mar 12, 2018 at 20:35 GMT
Originally opened as https://github.com/NerdWallet/nwpy-savage/issues/10
Currently,
version_id
is generated fromtxid_current()
, which is not portable between database installations. As a result, it's not possible to simply dump data from one server to another, because the version ID generation may conflict.One way to around this issue would be to add a
database_version_id
, which would be incremented upon a database migration.SavageLogMixin
would need to add adatabase_version_id
column, and there would need to be a separateDatabaseVersionId
table with a single value (which defaults to 0/1).The text was updated successfully, but these errors were encountered: