diff options
author | shennetsind <shennetsind@users.noreply.github.com> | 2013-11-06 16:30:09 -0800 |
---|---|---|
committer | shennetsind <shennetsind@users.noreply.github.com> | 2013-11-06 16:30:09 -0800 |
commit | 1c46a54fc4a77072698892a480936160dc4d0e7a (patch) | |
tree | b7b668c702e4c2b0ad745e6e465133fd25e56281 /sql-files/upgrades | |
parent | 3a3d2297068809d25ca43e19fd2977f97b2728f5 (diff) | |
parent | 47401a4195c58e14f12200f1ba6aeb34ecd87df7 (diff) | |
download | hercules-1c46a54fc4a77072698892a480936160dc4d0e7a.tar.gz hercules-1c46a54fc4a77072698892a480936160dc4d0e7a.tar.bz2 hercules-1c46a54fc4a77072698892a480936160dc4d0e7a.tar.xz hercules-1c46a54fc4a77072698892a480936160dc4d0e7a.zip |
Merge pull request #212 from shennetsind/master
Account-wide Exp/Drop/Death Modifiers
Diffstat (limited to 'sql-files/upgrades')
-rw-r--r-- | sql-files/upgrades/2013-10-30--19-53.sql | 5 | ||||
-rw-r--r-- | sql-files/upgrades/index.txt | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sql-files/upgrades/2013-10-30--19-53.sql b/sql-files/upgrades/2013-10-30--19-53.sql new file mode 100644 index 000000000..05481cff4 --- /dev/null +++ b/sql-files/upgrades/2013-10-30--19-53.sql @@ -0,0 +1,5 @@ +#1383162785 +ALTER TABLE `account_data` ADD `base_exp` TINYINT( 4 ) UNSIGNED NOT NULL default '0'; +ALTER TABLE `account_data` ADD `base_drop` TINYINT( 4 ) UNSIGNED NOT NULL default '0'; +ALTER TABLE `account_data` ADD `base_death` TINYINT( 4 ) UNSIGNED NOT NULL default '0'; +INSERT INTO `sql_updates` (`timestamp`) VALUES (1383162785);
\ No newline at end of file diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt index ca06e9c31..1fc0ebd77 100644 --- a/sql-files/upgrades/index.txt +++ b/sql-files/upgrades/index.txt @@ -7,4 +7,5 @@ 2013-10-09--21-38.sql 2013-10-10--16-36.sql 2013-10-27--16-47.sql +2013-10-30--19-53.sql 2013-10-30--21-12.sql
\ No newline at end of file |