forked from talamortis/mod-individual-XP
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore original table and using alter table (#43)
* Restore original table and using alter table * update README * update README
- Loading branch information
Showing
4 changed files
with
25 additions
and
24 deletions.
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
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,5 @@ | ||
CREATE TABLE IF NOT EXISTS `individualxp` ( | ||
`CharacterGUID` int(11) NOT NULL, | ||
`XPRate` int(11) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`CharacterGUID`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
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,2 @@ | ||
ALTER TABLE `individualxp` | ||
MODIFY `XPRate` FLOAT NOT NULL DEFAULT '1'; |
24 changes: 0 additions & 24 deletions
24
data/sql/db-characters/base/mod_individual_xp_IndividualXP.sql
This file was deleted.
Oops, something went wrong.