Advertisement
masonjames

membership sql statement

Jun 20th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.46 KB | None | 0 0
  1. CREATE TABLE `wp_m_communications` (
  2.   `id` bigint(11) NOT NULL AUTO_INCREMENT,
  3.   `subject` varchar(250) DEFAULT NULL,
  4.   `message` text,
  5.   `periodunit` int(11) DEFAULT NULL,
  6.   `periodtype` varchar(5) DEFAULT NULL,
  7.   `periodprepost` varchar(5) DEFAULT NULL,
  8.   `lastupdated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  9.   `active` int(11) DEFAULT '0',
  10.   `periodstamp` bigint(20) DEFAULT '0',
  11.   PRIMARY KEY (`id`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement