- UID
- 42308
- 阅读权限
- 40
- 回帖
- 617
- 喵币
- 0
- 有爱
- 98
- DKP
- 552
- 金币
- 10697
- 在线时间
- 740 小时
- 注册时间
- 2023-10-3
- 最后登录
- 2026-2-17
声望: 1187   虚弱: 0

Lv.4(锻造者)
 
|
发表于 2024-8-27 01:01:48
|
显示全部楼层
[SQL] Query player_dual_spec start
[ERR] 1142 - REFERENCES command denied to user 'mangos'@'localhost' for table 'tbccharacters.player'
[ERR] /*
MySQL Data Transfer
Source Host: localhost
Source Database: tbccharacters
Target Host: localhost
Target Database: tbccharacters
Date: 2024/8/22 13:38:55
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for player_dual_spec
-- ----------------------------
CREATE TABLE `player_dual_spec` (
`guid` bigint(20) unsigned NOT NULL,
`dual_spec_enabled` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`),
CONSTRAINT `player_dual_spec_ibfk_1` FOREIGN KEY (`guid`) REFERENCES `player` (`guid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records
-- ----------------------------
;
[SQL] Finished with error
[SQL] Query player_talent_specs start
[ERR] 1142 - REFERENCES command denied to user 'mangos'@'localhost' for table 'tbccharacters.player'
[ERR] /*
MySQL Data Transfer
Source Host: localhost
Source Database: tbccharacters
Target Host: localhost
Target Database: tbccharacters
Date: 2024/8/22 13:38:59
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for player_talent_specs
-- ----------------------------
CREATE TABLE `player_talent_specs` (
`guid` bigint(20) unsigned NOT NULL,
`spec_id` tinyint(1) NOT NULL,
`talent_tabs` text NOT NULL,
PRIMARY KEY (`guid`,`spec_id`),
CONSTRAINT `player_talent_specs_ibfk_1` FOREIGN KEY (`guid`) REFERENCES `player` (`guid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records
-- ----------------------------
;
[SQL] Finished with error
这2张表创建不了? |
|