mirror of
https://github.com/mangosfour/server.git
synced 2025-12-25 13:37:02 +00:00
NOTE: sql update remove forbided by commit duplicates from pool_* tables in random way.
So for more porper results DB better manually check and fix before apply it.
This is mostly note for DB projects devs.
95 lines
3.5 KiB
Makefile
95 lines
3.5 KiB
Makefile
# Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
## Sub-directories to parse
|
|
|
|
## Change installation location
|
|
# datadir = mangos/sql/updates
|
|
pkgdatadir = $(datadir)/mangos/sql/updates
|
|
|
|
## Files to be installed
|
|
# Install basic SQL files to datadir
|
|
pkgdata_DATA = \
|
|
10008_01_realmd_realmd_db_version.sql \
|
|
10148_01_mangos_mangos_string.sql \
|
|
10156_01_characters_character_aura.sql \
|
|
10156_02_characters_pet_aura.sql \
|
|
10156_03_mangos_spell_proc_event.sql \
|
|
10159_01_mangos_spell_proc_event.sql \
|
|
10160_01_characters_character_aura.sql \
|
|
10160_02_characters_pet_aura.sql \
|
|
10171_01_mangos_mangos_string.sql \
|
|
10197_01_mangos_playercreateinfo.sql \
|
|
10203_01_mangos_item_template.sql \
|
|
10205_01_mangos_spell_area.sql \
|
|
10207_01_mangos_npc_vendor.sql \
|
|
10208_01_mangos_playercreateinfo.sql \
|
|
10217_01_mangos_playercreateinfo_spell.sql \
|
|
10217_02_mangos_playercreateinfo_action.sql \
|
|
10217_03_mangos_spell_learn_spell.sql \
|
|
10217_04_mangos_spell_chain.sql \
|
|
10217_05_mangos_spell_proc_event.sql \
|
|
10219_01_mangos_spell_proc_event.sql \
|
|
10223_01_mangos_spell_proc_event.sql \
|
|
10237_01_mangos_spell_bonus_data.sql \
|
|
10244_01_mangos_command.sql \
|
|
10251_01_mangos_command.sql \
|
|
10252_01_mangos_reputation_reward_rate.sql \
|
|
10254_01_characters_auctionhouse.sql \
|
|
10256_01_mangos_command.sql \
|
|
10257_01_mangos_command.sql \
|
|
10263_01_mangos_pool_creature.sql \
|
|
10263_02_mangos_pool_gameobject.sql \
|
|
10263_03_mangos_pool_pool.sql \
|
|
README
|
|
|
|
## Additional files to include when running 'make dist'
|
|
# SQL update files, to upgrade database schema from older revisions
|
|
EXTRA_DIST = \
|
|
10008_01_realmd_realmd_db_version.sql \
|
|
10148_01_mangos_mangos_string.sql \
|
|
10156_01_characters_character_aura.sql \
|
|
10156_02_characters_pet_aura.sql \
|
|
10156_03_mangos_spell_proc_event.sql \
|
|
10159_01_mangos_spell_proc_event.sql \
|
|
10160_01_characters_character_aura.sql \
|
|
10160_02_characters_pet_aura.sql \
|
|
10171_01_mangos_mangos_string.sql \
|
|
10197_01_mangos_playercreateinfo.sql \
|
|
10203_01_mangos_item_template.sql \
|
|
10205_01_mangos_spell_area.sql \
|
|
10207_01_mangos_npc_vendor.sql \
|
|
10208_01_mangos_playercreateinfo.sql \
|
|
10217_01_mangos_playercreateinfo_spell.sql \
|
|
10217_02_mangos_playercreateinfo_action.sql \
|
|
10217_03_mangos_spell_learn_spell.sql \
|
|
10217_04_mangos_spell_chain.sql \
|
|
10217_05_mangos_spell_proc_event.sql \
|
|
10219_01_mangos_spell_proc_event.sql \
|
|
10223_01_mangos_spell_proc_event.sql \
|
|
10237_01_mangos_spell_bonus_data.sql \
|
|
10244_01_mangos_command.sql \
|
|
10251_01_mangos_command.sql \
|
|
10252_01_mangos_reputation_reward_rate.sql \
|
|
10254_01_characters_auctionhouse.sql \
|
|
10256_01_mangos_command.sql \
|
|
10257_01_mangos_command.sql \
|
|
10263_01_mangos_pool_creature.sql \
|
|
10263_02_mangos_pool_gameobject.sql \
|
|
10263_03_mangos_pool_pool.sql \
|
|
README
|