rathena/sql-files/upgrades/upgrade_20220407.sql
Everade 7853e926c2
Episode 17.2 - Sage's Legacy (#6799)
* Episode 17.2 Initial Release of instances and quests
* Added warp portals and monster spawn scripts
* Added Episode 17.2 related database entries

Closed #6470 

Thanks to @Megelith @Pokye 

Co-authored-by: JohnnyPlayy <JohnnyPlayy@users.noreply.github.com>
Co-authored-by: Everade <privacy@gatheringro.com>
Co-authored-by: crazyarashi <26841779+crazy-arashi@users.noreply.github.com>
Co-authored-by: Atemo <capucrath@gmail.com>
2023-04-12 21:27:34 +02:00

21 lines
916 B
SQL

ALTER TABLE `mob_db`
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
;
ALTER TABLE `mob_db2`
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
;
ALTER TABLE `mob_db_re`
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
;
ALTER TABLE `mob_db2_re`
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
;