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
This release brings sharedb-postgres up to spec with the official ShareDB database driver test suite. More details can be found in #24 (@alecgibson)
Migration from v4
The following SQL will need to be run to migrate an existing database:
ALTERTABLE snapshots
ALTER column doc_type
DROP NOT NULL;
ALTERTABLE snapshots
ALTER column data
DROP NOT NULL;
ALTERTABLE snapshots
ADD metadata jsonb;