Created
July 29, 2013 17:58
-
-
Save ramielrowe/6106243 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 `notifications` ( | |
`id` integer AUTO_INCREMENT NOT NULL PRIMARY KEY, | |
`key` varchar(300), | |
`value` varchar(300), | |
`index` varchar(300), | |
`message_id` varchar(50) | |
); | |
CREATE INDEX `notifications_key` ON `notifications` (`key`); | |
CREATE INDEX `notifications_value` ON `notifications` (`value`); | |
CREATE INDEX `notifications_message_id` ON `notifications` (`message_id`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment