This file contains hidden or 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 is placed at ./initdb/sql/db1.sql | |
-- SQL for initializing db1 | |
CREATE TABLE table1 (id int NOT NULL PRIMARY KEY, name varchar(50) NOT NULL); |
This file contains hidden or 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 is placed at ./initdb/sql/db1.sql | |
-- SQL for initializing db1 | |
CREATE TABLE table1 (id int NOT NULL PRIMARY KEY, name varchar(50) NOT NULL); |