Created
July 8, 2011 16:57
-
-
Save baudehlo/1072260 to your computer and use it in GitHub Desktop.
This file contains 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 User ( | |
id INTEGER PRIMARY KEY, | |
email TEXT NOT NULL, | |
); | |
CREATE TABLE List ( | |
id INTEGER PRIMARY KEY, | |
email TEXT NOT NULL, | |
); | |
CREATE TABLE ListMember ( | |
list_id INTEGER NOT NULL REFERENCES List, | |
user_id INTEGER NOT NULL REFERENCES User | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment