vmangos/sql/migrations
ratkosrb 5d7467f79b Implement area guards system.
Done without using the guard post gameobjects, since spawning them crashes the 1.12 client.
2019-03-06 19:48:01 +02:00
..
20190216195152_world.sql Fix typo in migration. 2019-02-18 23:02:05 +02:00
20190220180943_world.sql Fix crash when Red Drakonid dies. 2019-02-20 20:11:57 +02:00
20190220213249_world.sql Improve Kirtonos the Herald script. 2019-02-20 23:36:07 +02:00
20190302155127_world.sql Implement negative resistances. 2019-03-02 18:45:12 +02:00
20190304084505_world.sql Add some missing item sources. 2019-03-04 10:47:35 +02:00
20190304091651_world.sql Add new extra flag to mark unobtainable items. 2019-03-04 11:36:06 +02:00
20190306081346_world.sql Fix damage of The End of Dreams. 2019-03-06 10:14:19 +02:00
20190306174313_world.sql Implement area guards system. 2019-03-06 19:48:01 +02:00
merge.bat Change batch script for merging migrations to create a separate sql file for each database (#818) 2017-05-22 11:36:12 +01:00
merge.sh Add sql merge script for linux (#820) 2017-05-22 15:51:14 +01:00
README Initial Commit / Core Files 2017-03-10 00:38:11 +03:00

# SQL Migration File Format

SQL Migration is an ordinary SQL file.

File name must have the following format:

    YYYYmmddHHMMSS_database.sql

'YYYYmmddHHMMSS' should be the current date in UTC.
'database' must be one of 'characters', 'world' or 'logon'.

For example:

    20140320193109_world.sql

First line in the file must be the following:

    INSERT INTO `migrations` VALUES ('YYYYmmddHHMMSS');

The date must be the same as in the file name.