* move sql files into its own folder. * move outdated updates out of the update folder, sorted by github tags * split up the db dump so my editor doesn't try to hang itself if i dare to touch that file
12 lines
551 B
SQL
12 lines
551 B
SQL
DROP TABLE IF EXISTS `aowow_screeneffect_sounds`;
|
|
CREATE TABLE `aowow_screeneffect_sounds` (
|
|
`id` SMALLINT(5) unsigned NOT NULL,
|
|
`name` VARCHAR(40) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`ambienceDay` SMALLINT(5) unsigned NOT NULL,
|
|
`ambienceNight` SMALLINT(5) unsigned NOT NULL,
|
|
`musicDay` SMALLINT(5) unsigned NOT NULL,
|
|
`musicNight` SMALLINT(5) unsigned NOT NULL,
|
|
KEY `id` (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
UPDATE `aowow_dbversion` SET `sql` = CONCAT(IFNULL(`sql`, ''), ' sounds');
|