Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 4.49 KB | None | 0 0
  1. CREATE TABLE `bra_members` (
  2.   `member_id` mediumint(8) NOT NULL AUTO_INCREMENT,
  3.   `name` VARCHAR(255) NOT NULL DEFAULT '',
  4.   `member_group_id` SMALLINT(3) NOT NULL DEFAULT '0',
  5.   `email` VARCHAR(150) NOT NULL DEFAULT '',
  6.   `joined` INT(10) NOT NULL DEFAULT '0',
  7.   `ip_address` VARCHAR(46) NOT NULL,
  8.   `posts` mediumint(7) DEFAULT '0',
  9.   `title` VARCHAR(64) DEFAULT NULL,
  10.   `allow_admin_mails` tinyint(1) DEFAULT NULL,
  11.   `time_offset` VARCHAR(10) DEFAULT NULL,
  12.   `skin` SMALLINT(5) DEFAULT NULL,
  13.   `warn_level` INT(10) DEFAULT NULL,
  14.   `warn_lastwarn` INT(10) NOT NULL DEFAULT '0',
  15.   `language` mediumint(4) DEFAULT NULL,
  16.   `last_post` INT(10) DEFAULT NULL,
  17.   `restrict_post` VARCHAR(100) NOT NULL DEFAULT '0',
  18.   `view_sigs` tinyint(1) DEFAULT '1',
  19.   `view_img` tinyint(1) DEFAULT '1',
  20.   `bday_day` INT(2) DEFAULT NULL,
  21.   `bday_month` INT(2) DEFAULT NULL,
  22.   `bday_year` INT(4) DEFAULT NULL,
  23.   `msg_count_new` INT(2) NOT NULL DEFAULT '0',
  24.   `msg_count_total` INT(3) NOT NULL DEFAULT '0',
  25.   `msg_count_reset` INT(1) NOT NULL DEFAULT '0',
  26.   `msg_show_notification` INT(1) NOT NULL DEFAULT '0',
  27.   `misc` VARCHAR(128) DEFAULT NULL,
  28.   `last_visit` INT(10) DEFAULT '0',
  29.   `last_activity` INT(10) DEFAULT '0',
  30.   `dst_in_use` tinyint(1) DEFAULT '0',
  31.   `coppa_user` tinyint(1) DEFAULT '0',
  32.   `mod_posts` VARCHAR(100) NOT NULL DEFAULT '0',
  33.   `auto_track` VARCHAR(50) DEFAULT '0',
  34.   `temp_ban` VARCHAR(100) DEFAULT '0',
  35.   `login_anonymous` CHAR(3) NOT NULL DEFAULT '0&0',
  36.   `ignored_users` mediumtext,
  37.   `mgroup_others` VARCHAR(255) NOT NULL DEFAULT '',
  38.   `org_perm_id` VARCHAR(255) NOT NULL DEFAULT '',
  39.   `member_login_key` VARCHAR(32) NOT NULL DEFAULT '',
  40.   `member_login_key_expire` INT(10) NOT NULL DEFAULT '0',
  41.   `has_blog` mediumtext,
  42.   `has_gallery` tinyint(1) NOT NULL DEFAULT '0',
  43.   `members_auto_dst` tinyint(1) NOT NULL DEFAULT '1',
  44.   `members_display_name` VARCHAR(255) NOT NULL DEFAULT '',
  45.   `members_seo_name` VARCHAR(255) NOT NULL DEFAULT '',
  46.   `members_created_remote` tinyint(1) NOT NULL DEFAULT '0',
  47.   `members_cache` longtext,
  48.   `members_disable_pm` INT(1) NOT NULL DEFAULT '0',
  49.   `members_l_display_name` VARCHAR(255) NOT NULL DEFAULT '',
  50.   `members_l_username` VARCHAR(255) NOT NULL DEFAULT '',
  51.   `failed_logins` mediumtext,
  52.   `failed_login_count` SMALLINT(3) NOT NULL DEFAULT '0',
  53.   `members_profile_views` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  54.   `members_pass_hash` VARCHAR(32) NOT NULL DEFAULT '',
  55.   `members_pass_salt` VARCHAR(5) NOT NULL DEFAULT '',
  56.   `member_banned` tinyint(1) NOT NULL DEFAULT '0',
  57.   `member_uploader` VARCHAR(32) NOT NULL DEFAULT 'default',
  58.   `members_bitoptions` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  59.   `fb_uid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
  60.   `fb_emailhash` VARCHAR(60) NOT NULL DEFAULT '',
  61.   `fb_lastsync` INT(10) NOT NULL DEFAULT '0',
  62.   `members_day_posts` VARCHAR(32) NOT NULL DEFAULT '0,0',
  63.   `live_id` VARCHAR(32) DEFAULT NULL,
  64.   `twitter_id` VARCHAR(255) NOT NULL DEFAULT '',
  65.   `twitter_token` VARCHAR(255) NOT NULL DEFAULT '',
  66.   `twitter_secret` VARCHAR(255) NOT NULL DEFAULT '',
  67.   `notification_cnt` mediumint(9) NOT NULL DEFAULT '0',
  68.   `tc_lastsync` INT(10) NOT NULL DEFAULT '0',
  69.   `fb_session` VARCHAR(200) NOT NULL DEFAULT '',
  70.   `fb_token` mediumtext,
  71.   `ips_mobile_token` VARCHAR(64) DEFAULT NULL,
  72.   `unacknowledged_warnings` tinyint(1) DEFAULT NULL,
  73.   `blogs_recache` tinyint(1) DEFAULT NULL,
  74.   `ipsconnect_revalidate_url` mediumtext,
  75.   `ipsconnect_id` INT(10) NOT NULL DEFAULT '0',
  76.   `cm_credits` FLOAT NOT NULL DEFAULT '0',
  77.   `cm_reg` INT(11) NOT NULL DEFAULT '0',
  78.   `referred_by` INT(11) NOT NULL DEFAULT '0',
  79.   `cm_no_sev` tinyint(1) DEFAULT '0',
  80.   `cim_profile_id` VARCHAR(32) DEFAULT '',
  81.   `cim_payment_id` INT(10) DEFAULT '0',
  82.   `cim_method` INT(5) NOT NULL DEFAULT '0',
  83.   `cm_return_group` SMALLINT(3) NOT NULL DEFAULT '0',
  84.   PRIMARY KEY (`member_id`),
  85.   KEY `members_l_display_name` (`members_l_display_name`),
  86.   KEY `members_l_username` (`members_l_username`),
  87.   KEY `bday_day` (`bday_day`),
  88.   KEY `bday_month` (`bday_month`),
  89.   KEY `member_banned` (`member_banned`),
  90.   KEY `members_bitoptions` (`members_bitoptions`),
  91.   KEY `ip_address` (`ip_address`),
  92.   KEY `failed_login_count` (`failed_login_count`),
  93.   KEY `joined` (`joined`),
  94.   KEY `fb_uid` (`fb_uid`),
  95.   KEY `twitter_id` (`twitter_id`),
  96.   KEY `email` (`email`),
  97.   KEY `mgroup` (`member_group_id`,`member_id`),
  98.   KEY `blogs_recache` (`blogs_recache`),
  99.   KEY `member_groups` (`member_group_id`,`mgroup_others`)
  100. ) ENGINE=MyISAM AUTO_INCREMENT=28329 DEFAULT CHARSET=utf8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement