Created
September 26, 2014 17:04
-
-
Save srt32/958e19d84f076f155ff9 to your computer and use it in GitHub Desktop.
welcome-wagon create table
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
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