Created
August 5, 2010 02:16
-
-
Save naan/509117 to your computer and use it in GitHub Desktop.
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 statuses ( | |
'id' INTEGER PRIMARY KEY, | |
'tweet' TEXT, | |
'in_reply_to_status_id' INTEGER, | |
'user_id' INTEGER, | |
'user' TEXT | |
); | |
CREATE INDEX statuses_in_reply_to_status_id on statuses(in_reply_to_status_id); | |
CREATE INDEX statuses_user_id on statuses(user_id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment