-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support postgres via database config
- Loading branch information
Showing
8 changed files
with
367 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
DROP DATABASE IF EXISTS db1; | ||
CREATE DATABASE db1; | ||
|
||
DROP DATABASE IF EXISTS db2; | ||
CREATE DATABASE db2; | ||
|
||
DROP DATABASE IF EXISTS db3; | ||
CREATE DATABASE db3; | ||
|
||
\c db1 | ||
|
||
CREATE TABLE table1( | ||
id integer NOT NULL, | ||
name varchar(255) NOT NULL | ||
); | ||
|
||
INSERT INTO table1 (id, name) | ||
VALUES | ||
(1, 'John'), | ||
(2, 'George'), | ||
(3, 'Richard'); | ||
|
||
\c db2 | ||
|
||
CREATE TABLE table1( | ||
id integer NOT NULL, | ||
name varchar(255) NOT NULL | ||
); | ||
|
||
INSERT INTO table1 (id, name) | ||
VALUES | ||
(1, 'Rob'), | ||
(2, 'Ken'), | ||
(3, 'Robert'); | ||
|
||
\c db3 | ||
|
||
CREATE TABLE table1( | ||
id integer NOT NULL, | ||
name varchar(255) NOT NULL | ||
); | ||
|
||
INSERT INTO table1 (id, name) | ||
VALUES | ||
(1, 'Athos'), | ||
(2, 'Porthos'), | ||
(3, 'Aramis'); |
Oops, something went wrong.