mirror of
https://github.com/araxiaonline/mod-azerothshard.git
synced 2026-06-13 01:32:21 -04:00
* chore. Compatibility with the latest version * ci: add apps/ directory for ci scripts * Update SQL files * Update workflow and upload template * rewrite getf method * Revert "Update workflow and upload template" This reverts commit 7951beaca606f8667d107e4436dfe65d43cd947b. * Pointer to local variable * update workflow * Revert "Pointer to local variable" This reverts commit 22a66673e94b00dabb88f4bde297b0d44898a27c. * Change const char for std::string * AzthLanguage in modules * fix build error * fix build * fix. sql * fix sql --------- Co-authored-by: Helias <stefanoborzi32@gmail.com>
14 lines
383 B
SQL
14 lines
383 B
SQL
DROP TABLE IF EXISTS `creature_alias`;
|
|
CREATE TABLE `creature_alias` (
|
|
`guid` BIGINT(15) NOT NULL COMMENT 'guid from creature',
|
|
`alias` CHAR(15) DEFAULT NULL,
|
|
PRIMARY KEY (`guid`)
|
|
);
|
|
|
|
DROP TABLE IF EXISTS `gameobject_alias`;
|
|
CREATE TABLE `gameobject_alias` (
|
|
`guid` BIGINT(15) NOT NULL COMMENT 'guid from creature',
|
|
`alias` CHAR(15) DEFAULT NULL,
|
|
PRIMARY KEY (`guid`)
|
|
);
|