Files
repmgr/repmgr--4.0.sql
2017-04-19 10:12:26 +09:00

8 lines
289 B
SQL

-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION repmgr" to load this file. \quit
CREATE TABLE nodes (
node_id INTEGER PRIMARY KEY,
type TEXT NOT NULL CHECK (type IN('master','standby','witness','bdr'))
);