mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 08:20:58 -05:00
9 lines
321 B
MySQL
9 lines
321 B
MySQL
|
-- This is for the slave.
|
||
|
CREATE USER replicator WITH REPLICATION ENCRYPTED PASSWORD '<password_here>';
|
||
|
|
||
|
-- This is for the master.
|
||
|
SELECT * FROM pg_create_physical_replication_slot('replication_slot_slave');
|
||
|
SELECT * FROM pg_replication_slots;
|
||
|
|
||
|
-- https://medium.com/swlh/postgresql-replication-with-docker-c6a904becf77
|