Skip to content
Snippets Groups Projects
Unverified Commit 0bb8e418 authored by David Robertson's avatar David Robertson Committed by GitHub
Browse files

Fix postgres schema after dropping old tables (#16730)

parent 51e4e356
No related branches found
No related tags found
No related merge requests found
Add a Postgres `REPLICA IDENTITY` to tables that do not have an implicit one. This should allow use of Postgres logical replication.
\ No newline at end of file
ALTER TABLE batch_events REPLICA IDENTITY USING INDEX chunk_events_event_id;
ALTER TABLE event_txn_id REPLICA IDENTITY USING INDEX event_txn_id_event_id;
ALTER TABLE insertion_event_edges REPLICA IDENTITY FULL;
ALTER TABLE insertion_event_extremities REPLICA IDENTITY USING INDEX insertion_event_extremities_event_id;
ALTER TABLE insertion_events REPLICA IDENTITY USING INDEX insertion_events_event_id;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment