link to another postgres server

This commit is contained in:
Paul Trowbridge 2022-09-20 13:08:04 -04:00
parent 7ce1a180ee
commit e6acac3e4b
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
CREATE EXTENSION postgres_fdw;
CREATE SERVER hptrow
FOREIGN DATA WRAPPER postgres_fdw
OPTIONS (host 'hptrow.me', port '54339', dbname 'ubm');
CREATE USER MAPPING FOR ptrowbridge
SERVER hptrow
OPTIONS (user 'ptrowbridge', password 'gyaswddh1983');
CREATE SCHEMA frlarp;
IMPORT FOREIGN SCHEMA rlarp
FROM SERVER hptrow INTO frlarp;