replikey/sql/setup.sql
eternal-flame-AD ef53cb079d
add setup.sql
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
2024-11-03 22:33:16 -06:00

18 lines
494 B
SQL

ALTER SYSTEM SET wal_level = logical;
-- restart the server
CREATE ROLE subscriber LOGIN REPLICATION PASSWORD 'subscriber';
CREATE PUBLICATION mi_publication
FOR TABLES IN SCHEMA public
WITH (publish = 'insert, update, delete');
-- on the subscriber side
--- Precondition: schema and data prior to starting the publication present
CREATE SUBSCRIPTION mi_subscription
CONNECTION 'postgresql://subscriber:subscriber@localhost:5432/misskey'
PUBLICATION mi_publication;