Created
October 22, 2016 22:37
-
-
Save vendethiel/9573ef16cc45a353dc626ef68432e28a to your computer and use it in GitHub Desktop.
IP_notifs
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 `phpbb_notifications` ( | |
notification_id INT NOT NULL AUTO_INCREMENT, | |
notification_type INT NOT NULL, | |
notification_user_id INT NOT NULL COMMENT 'user id receiving notification', | |
notification_date DATE COMMENT 'when happened the notification', | |
notification_data TEXT COMMENT 'JSON of the data (title of post, or whatever)', | |
notification_trigger_user INT COMMENT '(May be) the user who triggered the notification', | |
notification_read TINYINT COMMENT 'Was the notification read?' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment