- UID
- 27015
- 閱讀權限
- 10
- 主題
- 16
- 帖子
- 52
- 精華
- 1
- A幣
- 202
- 在線時間
- 47 小時
- 最後登錄
- 2018-9-6
集團新軍
- 主題
- 16
- 帖子
- 52
- 精華
- 1
- 綜合社群主題發文量
- 35
- 電玩社群主題發文量
- 0
- 娛樂社群主題發文量
- 0
- 技術社群主題發文量
- 0
- 閱讀權限
- 10
- 註冊時間
- 2018-5-15
TA的每日心情 | 衰 2018-9-7 18:26 |
---|
簽到天數: 58 天 連續簽到: 0 天 [LV.5]常住居民I
|
回復 2# TWAICL
/*
MySQL Data Transfer
Source Host: localhost
Source Database: pony
Target Host: localhost
Target Database: pony
Date: 2018/6/28 下午 01:28:38
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for accounts
-- ----------------------------
DROP TABLE IF EXISTS `accounts`;
CREATE TABLE `accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '',
`password` varchar(128) NOT NULL DEFAULT '',
`salt` varchar(32) DEFAULT NULL,
`2ndpassword` varchar(134) DEFAULT NULL,
`salt2` varchar(32) DEFAULT NULL,
`loggedin` tinyint(1) unsigned NOT NULL DEFAULT '0',
`lastlogin` timestamp NULL DEFAULT NULL,
`createdat` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`birthday` date NOT NULL DEFAULT '0000-00-00',
`banned` tinyint(1) NOT NULL DEFAULT '0',
`banreason` text,
`gm` tinyint(1) NOT NULL DEFAULT '0',
`email` tinytext,
`macs` tinytext,
`tempban` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`greason` tinyint(4) unsigned DEFAULT NULL,
`ACash` int(11) DEFAULT NULL,
`mPoints` int(11) DEFAULT NULL,
`gender` tinyint(1) unsigned NOT NULL DEFAULT '0',
`SessionIP` varchar(64) DEFAULT NULL,
`points` int(11) NOT NULL DEFAULT '0',
`vpoints` int(11) NOT NULL DEFAULT '0',
`lastlogon` timestamp NULL DEFAULT NULL,
`facebook_id` varchar(255) DEFAULT NULL,
`access_token` varchar(255) DEFAULT '',
`password_otp` varchar(255) DEFAULT '',
`expiration` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `ranking1` (`id`,`banned`,`gm`)
) ENGINE=InnoDB DEFAULT CHARSET=big5 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records
-- ----------------------------
圖文我都貼 觀看測試都方便XD
再麻煩前輩指點迷津了 感謝>< |
|