Advertisement
Guest User

account_messages table

a guest
Nov 2nd, 2015
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.37 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `account_messages` (
  2.   `accountid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'account id to recieve the message',
  3.   `message` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'message to send',
  4.   PRIMARY KEY (`accountid`,`message`)
  5. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Messages to be sent to the characters of an account when they log in';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement