-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* First Pass on EF Schema Export * Update .gitignore * First Pass of EF Schema Export * Update README.md * Updated Export Smarter filtering of object id to wcid matches.. not perfect * base updates * Update Export * more updates * moar updates * set fixed date * Hook fixes and removing players as statics
- Loading branch information
1 parent
81b9644
commit c706dea
Showing
58,991 changed files
with
2,348,024 additions
and
2,574,692 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-11.9 MB
Database/10-Overwrites/dereth-museum/pkt_2017-1-22_1485062740_log.pcap
Binary file not shown.
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
Database/2-BaseUpdates/003-AddLinkColumnsToLandblockTable.sql
This file was deleted.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
Database/2-BaseUpdates/2019-01-16-00-Spell_Table_Changes.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `spell` | ||
DROP COLUMN `portal_Lifetime`, | ||
DROP COLUMN `degrade_Limit`, | ||
DROP COLUMN `degrade_Modifier`, | ||
DROP COLUMN `duration`, | ||
DROP COLUMN `mana_Mod`, | ||
DROP COLUMN `non_Component_Target_Type`, | ||
DROP COLUMN `display_Order`, | ||
DROP COLUMN `recovery_Amount`, | ||
DROP COLUMN `recovery_Interval`, | ||
DROP COLUMN `fizzle_Effect`, | ||
DROP COLUMN `target_Effect`, | ||
DROP COLUMN `caster_Effect`, | ||
DROP COLUMN `spell_Formula_Comp_8_Component_Id`, | ||
DROP COLUMN `spell_Formula_Comp_7_Component_Id`, | ||
DROP COLUMN `spell_Formula_Comp_6_Component_Id`, | ||
DROP COLUMN `spell_Formula_Comp_5_Component_Id`, | ||
DROP COLUMN `spell_Formula_Comp_4_Component_Id`, | ||
DROP COLUMN `spell_Formula_Comp_3_Component_Id`, | ||
DROP COLUMN `spell_Formula_Comp_2_Component_Id`, | ||
DROP COLUMN `spell_Formula_Comp_1_Component_Id`, | ||
DROP COLUMN `meta_Spell_Id`, | ||
DROP COLUMN `meta_Spell_Type`, | ||
DROP COLUMN `component_Loss`, | ||
DROP COLUMN `formula_Version`, | ||
DROP COLUMN `economy_Mod`, | ||
DROP COLUMN `power`, | ||
DROP COLUMN `range_Mod`, | ||
DROP COLUMN `range_Constant`, | ||
DROP COLUMN `mana`, | ||
DROP COLUMN `bitfield`, | ||
DROP COLUMN `category`, | ||
DROP COLUMN `icon_Id`, | ||
DROP COLUMN `school`, | ||
DROP COLUMN `description`, | ||
DROP INDEX `metaspell_id_uidx` ; | ||
; |
19 changes: 19 additions & 0 deletions
19
Database/2-BaseUpdates/2019-01-16-01-Recipe_Mods_Table_Changes.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `recipe_mods_bool` | ||
CHANGE COLUMN `unknown_1` `source` INT(10) NOT NULL ; | ||
|
||
ALTER TABLE `recipe_mods_d_i_d` | ||
CHANGE COLUMN `unknown_1` `source` INT(10) NOT NULL ; | ||
|
||
ALTER TABLE `recipe_mods_float` | ||
CHANGE COLUMN `unknown_1` `source` INT(10) NOT NULL ; | ||
|
||
ALTER TABLE `recipe_mods_i_i_d` | ||
CHANGE COLUMN `unknown_1` `source` INT(10) NOT NULL ; | ||
|
||
ALTER TABLE `recipe_mods_int` | ||
CHANGE COLUMN `unknown_1` `source` INT(10) NOT NULL ; | ||
|
||
ALTER TABLE `recipe_mods_string` | ||
CHANGE COLUMN `unknown_1` `source` INT(10) NOT NULL ; |
4 changes: 4 additions & 0 deletions
4
Database/2-BaseUpdates/2019-01-19-00-Emote_Table_Display_Change.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `weenie_properties_emote_action` | ||
CHANGE COLUMN `display` `display` BIT(1) NULL DEFAULT NULL ; |
4 changes: 4 additions & 0 deletions
4
Database/2-BaseUpdates/2019-01-20-00-Spell_Table_DotDuration_Add.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `spell` | ||
ADD COLUMN `dot_Duration` DOUBLE NULL DEFAULT NULL AFTER `number_Variance`; |
7 changes: 7 additions & 0 deletions
7
Database/2-BaseUpdates/2019-02-02-00-Drop_FK_On_Landblock_Instance.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `landblock_instance` | ||
DROP FOREIGN KEY `wcid_instance`; | ||
ALTER TABLE `landblock_instance` | ||
DROP INDEX `wcid_instance` ; | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `points_of_interest` | ||
DROP FOREIGN KEY `wcid_poi`; | ||
ALTER TABLE `points_of_interest` | ||
DROP INDEX `wcid_poi` ; | ||
; |
7 changes: 7 additions & 0 deletions
7
Database/2-BaseUpdates/2019-02-02-02-Changes_for_Landblock_Instance_Links.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `landblock_instance_link` | ||
ADD UNIQUE INDEX `parent_child_uidx` (`parent_GUID` ASC, `child_GUID` ASC), | ||
ADD INDEX `child_idx` (`child_GUID` ASC), | ||
DROP INDEX `parent_child_guuidx` ; | ||
; |
40 changes: 40 additions & 0 deletions
40
Database/2-BaseUpdates/2019-02-02-03-Add_LastModified_To_Tables.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
USE `ace_world`; | ||
|
||
ALTER TABLE `cook_book` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `target_W_C_I_D`; | ||
|
||
ALTER TABLE `encounter` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `cell_Y`; | ||
|
||
ALTER TABLE `event` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `state`; | ||
|
||
ALTER TABLE `house_portal` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `angles_Z`; | ||
|
||
ALTER TABLE `landblock_instance` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `is_Link_Child`; | ||
|
||
ALTER TABLE `landblock_instance_link` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `child_GUID`; | ||
|
||
ALTER TABLE `points_of_interest` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `weenie_Class_Id`; | ||
|
||
ALTER TABLE `quest` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `message`; | ||
|
||
ALTER TABLE `recipe` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `data_Id`; | ||
|
||
ALTER TABLE `spell` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `dot_Duration`; | ||
|
||
ALTER TABLE `treasure_death` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `mundane_Item_Type_Selection_Chances`; | ||
|
||
ALTER TABLE `treasure_wielded` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `unknown_12`; | ||
|
||
ALTER TABLE `weenie` | ||
ADD COLUMN `last_Modified` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW() AFTER `type`; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.