mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 15:16:29 +00:00
Conflicts: .gitignore Makefile README.rst check_dir.c config.c config.h dbutils.h repmgr.c repmgr.conf repmgr.h repmgrd.c
14 lines
218 B
SQL
14 lines
218 B
SQL
/*
|
|
* uninstall_repmgr.sql
|
|
*
|
|
* Copyright (C) 2ndQuadrant, 2010-2011
|
|
*
|
|
*/
|
|
|
|
DROP TABLE IF EXISTS repl_nodes;
|
|
DROP TABLE IF EXISTS repl_monitor;
|
|
DROP VIEW IF EXISTS repl_status;
|
|
|
|
DROP SCHEMA repmgr;
|
|
DROP USER repmgr;
|