Skip to content

Commit

Permalink
make clan_id an autoincrement column
Browse files Browse the repository at this point in the history
  • Loading branch information
mjsalerno committed Dec 19, 2024
1 parent 68e37a5 commit 43809d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CREATE TABLE "ddon_clan_param"
(
"clan_id" INTEGER PRIMARY KEY NOT NULL,
"clan_id" INTEGER PRIMARY KEY AUTOINCREMENT,
"clan_level" INTEGER NOT NULL,
"member_num" INTEGER NOT NULL,
"master_id" INTEGER NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ CREATE TABLE IF NOT EXISTS "ddon_bbm_content_treasure"

CREATE TABLE IF NOT EXISTS "ddon_clan_param"
(
"clan_id" INTEGER PRIMARY KEY NOT NULL,
"clan_id" INTEGER PRIMARY KEY AUTOINCREMENT,
"clan_level" INTEGER NOT NULL,
"member_num" INTEGER NOT NULL,
"master_id" INTEGER NOT NULL,
Expand Down

0 comments on commit 43809d6

Please sign in to comment.