Advertisement
citstudio

Email Newsletter 1 : Database Guest

Jun 23rd, 2014
942
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. CREATE TABLE `mt_guest` (
  2.     `guest_id` BIGINT(20) NOT NULL AUTO_INCREMENT,
  3.     `full_name` VARCHAR(100) NULL DEFAULT NULL,
  4.     `email` VARCHAR(50) NULL DEFAULT NULL,
  5.     `type` ENUM('GUEST','SUBSCRIBER') NULL DEFAULT 'GUEST',
  6.     `codeverification` VARCHAR(50) NULL DEFAULT NULL,
  7.     `unsubscribe` ENUM('Y','N') NULL DEFAULT 'N',
  8.     PRIMARY KEY (`guest_id`)
  9. )
  10. COLLATE='utf8_general_ci'
  11. ENGINE=InnoDB
  12. AUTO_INCREMENT=1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement