Skip to content

Instantly share code, notes, and snippets.

@kshitij10496
Created January 17, 2019 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kshitij10496/4eb85645164a454b7db72a9bb5c2ba48 to your computer and use it in GitHub Desktop.
Save kshitij10496/4eb85645164a454b7db72a9bb5c2ba48 to your computer and use it in GitHub Desktop.
[Postgres with Docker] Table Creation SQL
CREATE TABLE IF NOT EXISTS members (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
bio TEXT
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment