Created
September 26, 2014 17:04
-
-
Save srt32/958e19d84f076f155ff9 to your computer and use it in GitHub Desktop.
Revisions
-
srt32 created this gist
Sep 26, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ 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);