EverWrath/data/sql/updates/db_auth/2023_02_20_00.sql
AzerothCoreBot eacd9247cc chore(DB): import pending files
Referenced commit(s): 0c4feb6744
2023-02-20 21:10:00 +00:00

12 lines
339 B
SQL

-- DB update 2023_01_31_00 -> 2023_02_20_00
--
DROP TABLE IF EXISTS `motd`;
CREATE TABLE `motd` (
`realmid` INT NOT NULL,
`text` LONGTEXT NULL DEFAULT NULL,
PRIMARY KEY (`realmid`)
) ENGINE=InnoDB;
DELETE FROM `motd` WHERE `realmid`=1;
INSERT INTO `motd` (`realmid`, `text`) VALUES
(-1, 'Welcome to an AzerothCore server.');