Skip to content

Instantly share code, notes, and snippets.

@paulw54jrn
Created September 15, 2014 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulw54jrn/fe6c16b78449f6928662 to your computer and use it in GitHub Desktop.
Save paulw54jrn/fe6c16b78449f6928662 to your computer and use it in GitHub Desktop.
`member` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`member_id` varchar(32) NOT NULL,
`fullname` varchar(40) NOT NULL,
`email` varchar(200) NOT NULL,
`url_token` varchar(200) NOT NULL,
`password` char(40) NOT NULL,
`passhash` BINARY(60) NULL,
`headline` varchar(140) DEFAULT NULL,
`confirm_key` varchar(20) NOT NULL,
`active` int(2) unsigned NOT NULL DEFAULT '0',
`banned` tinyint(2) NOT NULL DEFAULT '0',
`sina_info_id` int(11) DEFAULT NULL,
`douban_info_id` int(11) DEFAULT NULL,
`is_admin` int(2) unsigned NOT NULL DEFAULT '0',
`custom_url_updated` int(10) NOT NULL DEFAULT '0',
`created` int(10) unsigned NOT NULL DEFAULT '0',
`last_updated` int(10) unsigned NOT NULL DEFAULT '0',
`invitation_key_num` int(10) unsigned NOT NULL DEFAULT '0',
`avatar_path` varchar(30) DEFAULT NULL,
`reset_key` varchar(20) DEFAULT NULL,
`reset_expires` int(11) DEFAULT NULL,
`can_invite` tinyint(2) NOT NULL DEFAULT '1',
`muted` int(2) NOT NULL DEFAULT '0',
`status` int(2) NOT NULL DEFAULT '0',
`name_updated` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `confirm_key` (`confirm_key`),
KEY `fullname` (`fullname`),
KEY `member_email` (`email`),
KEY `member_url_token` (`url_token`),
KEY `idx_member_id` (`member_id`(10))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment