chore(DB): import pending files

Referenced commit(s): 0c4feb674444210da295751a0c4e5eefb9c771f1
This commit is contained in:
AzerothCoreBot 2023-02-20 21:10:00 +00:00
parent 0c4feb6744
commit eacd9247cc
5 changed files with 25 additions and 18 deletions

View File

@ -1,5 +1,5 @@
{
"name": "azerothcore-wotlk",
"version": "7.0.0-dev.0",
"version": "7.0.0-dev.1",
"license": "AGPL3"
}

View File

@ -1,3 +1,4 @@
-- DB update 2023_01_31_00 -> 2023_02_20_00
--
DROP TABLE IF EXISTS `motd`;
CREATE TABLE `motd` (

View File

@ -1,3 +1,4 @@
-- DB update 2023_02_19_11 -> 2023_02_20_00
--
DELETE FROM `command` WHERE `name` = 'reload motd';
INSERT INTO `command` (`name`, `security`, `help`) VALUES

View File

@ -1,3 +1,25 @@
## 7.0.0-dev.1 | Commit: [0c4feb674444210da295751a0c4e5eefb9c771f1
](https://github.com/azerothcore/azerothcore-wotlk/commit/0c4feb674444210da295751a0c4e5eefb9c771f1
### How to upgrade
Motd is removed from config file
Motd is can now be found in auth database table `motd`
`realmid` = Realm ID or -1 for all realms.
`text` = Text for Motd
Specified realmId is prioritized over -1 (All Realms)
For example:
You have realm 1, 2, 3
(-1, "This Motd will show for 2, 3")
(1, "This Motd will show for 1")
## 6.0.0-dev.3 | Commit: [44b7a0666c78dc99ab0bbc94045abb6685b3ad86
](https://github.com/azerothcore/azerothcore-wotlk/commit/44b7a0666c78dc99ab0bbc94045abb6685b3ad86

View File

@ -1,17 +0,0 @@
### How to upgrade
Motd is removed from config file
Motd is can now be found in auth database table `motd`
`realmid` = Realm ID or -1 for all realms.
`text` = Text for Motd
Specified realmId is prioritized over -1 (All Realms)
For example:
You have realm 1, 2, 3
(-1, "This Motd will show for 2, 3")
(1, "This Motd will show for 1")