Skip to content
This repository has been archived by the owner on Mar 9, 2020. It is now read-only.

Commit

Permalink
Added Database/Char/CharacterSheet API with minor update to bin/sql/C…
Browse files Browse the repository at this point in the history
…reateCharTables.sql.
  • Loading branch information
Dragonrun1 committed Jun 23, 2014
1 parent 6b7fec8 commit 8b522cc
Show file tree
Hide file tree
Showing 3 changed files with 651 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/sql/CreateCharTables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ CREATE TABLE IF NOT EXISTS "{database}"."{table_prefix}charAttackers" (
DEFAULT CHARSET =ascii;
DROP TABLE IF EXISTS "{database}"."{table_prefix}charAttributeEnhancers";
CREATE TABLE IF NOT EXISTS "{database}"."{table_prefix}charAttributeEnhancers" (
"ownerID" BIGINT(20) UNSIGNED NOT NULL,
"augmentatorName" CHAR(50) NOT NULL,
"augmentatorValue" TINYINT(2) UNSIGNED NOT NULL,
"bonusName" CHAR(24) NOT NULL,
"bonusName" CHAR(20) NOT NULL,
"ownerID" BIGINT(20) UNSIGNED NOT NULL,
PRIMARY KEY ("ownerID", "bonusName")
)
ENGINE =InnoDB
Expand Down

0 comments on commit 8b522cc

Please sign in to comment.