Created
March 25, 2019 04:17
-
-
Save dvliman/a23b16a492eee4bf75a84f4f95bb1aea to your computer and use it in GitHub Desktop.
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
-- setup.sql | |
CREATE DATABASE demo; | |
CREATE TABLE users ( | |
user_id SERIAL PRIMARY KEY, | |
name TEXT NOT NULL, | |
email TEXT NOT NULL UNIQUE | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment