Skip to content

Instantly share code, notes, and snippets.

@srt32
Created September 26, 2014 17:04
Show Gist options
  • Save srt32/958e19d84f076f155ff9 to your computer and use it in GitHub Desktop.
Save srt32/958e19d84f076f155ff9 to your computer and use it in GitHub Desktop.
welcome-wagon create table
CREATE TABLE IF NOT EXISTS users (
email varchar PRIMARY KEY NOT NULL,
started_on date NOT NULL
);
CREATE UNIQUE INDEX users_email_index ON users (email);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment