Skip to content

Instantly share code, notes, and snippets.

@meowgorithm
Created June 29, 2017 20:10
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 meowgorithm/384a16c08dde99e83a2eb749b7d8140d to your computer and use it in GitHub Desktop.
Save meowgorithm/384a16c08dde99e83a2eb749b7d8140d to your computer and use it in GitHub Desktop.
BEGIN;
CREATE TABLE todos (
id SERIAL,
name TEXT,
done BOOLEAN
);
CREATE TABLE people (
id SERIAL,
name TEXT,
phone_number TEXT,
email TEXT
);
COMMIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment