forked from azerothcore/azerothcore-wotlk
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
CREATE TABLE `acore_characters`.`character_accountwide_reputation` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`factionGroup` INT UNSIGNED NOT NULL, | ||
`factionId` INT UNSIGNED NOT NULL, | ||
`rep` INT UNSIGNED NULL, | ||
PRIMARY KEY (`accountId`, `factionGroup`, `factionId`)); | ||
|
||
|
||
CREATE TABLE `acore_characters`.`character_accountwide_taxi` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`faction` INT UNSIGNED NOT NULL, | ||
`node` INT UNSIGNED NOT NULL, | ||
PRIMARY KEY (`accountId`, `faction`, `node`)); | ||
|
||
CREATE TABLE `acore_characters`.`character_accountwide_title` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`title` INT UNSIGNED NOT NULL, | ||
PRIMARY KEY (`accountId`, `title`)); | ||
|
||
CREATE TABLE `acore_characters`.`character_accountwide_mount` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`spellId` INT UNSIGNED NOT NULL, | ||
PRIMARY KEY (`accountId`, `spellId`)); |
25 changes: 0 additions & 25 deletions
25
modules/mod-account-wide/sql/characters/base/structure.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +0,0 @@ | ||
-- Put only sql structure in this file (create table if exists, delete table, alter table etc...). | ||
-- If you don't use this database, then delete this file. | ||
CREATE TABLE `acore_characters`.`character_accountwide_reputation` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`factionGroup` INT UNSIGNED NOT NULL, | ||
`factionId` INT UNSIGNED NOT NULL, | ||
`rep` INT UNSIGNED NULL, | ||
PRIMARY KEY (`accountId`, `factionGroup`, `factionId`)); | ||
|
||
|
||
CREATE TABLE `acore_characters`.`character_accountwide_taxi` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`faction` INT UNSIGNED NOT NULL, | ||
`node` INT UNSIGNED NOT NULL, | ||
PRIMARY KEY (`accountId`, `faction`, `node`)); | ||
|
||
CREATE TABLE `acore_characters`.`character_accountwide_title` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`title` INT UNSIGNED NOT NULL, | ||
PRIMARY KEY (`accountId`, `title`)); | ||
|
||
CREATE TABLE `acore_characters`.`character_accountwide_mount` ( | ||
`accountId` INT UNSIGNED NOT NULL, | ||
`spellId` INT UNSIGNED NOT NULL, | ||
PRIMARY KEY (`accountId`, `spellId`)); | ||