Last active
August 29, 2015 14:16
-
-
Save jobscry/eff8384e751f657c955d to your computer and use it in GitHub Desktop.
email 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 emails( | |
id INTEGER PRIMARY KEY, | |
email VARCHAR(255) UNIQUE, | |
dumps VARCHAR(255), | |
count INTEGER DEFAULT 1, | |
fb INTEGER DEFAULT 0, | |
twitter INTEGER DEFAULT 0, | |
sex INTEGER DEFAULT 0, | |
location INTEGER DEFAULT 0, | |
tw_updates INTEGER DEFAULT 0 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment