-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PR] #13 from Becods: Extra fields from bud
[+] Extra fields from bud
- Loading branch information
Showing
6 changed files
with
33 additions
and
0 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
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
8 changes: 8 additions & 0 deletions
8
src/main/resources/db/migration/mariadb/V255__add_maimai_140_ext_field.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,8 @@ | ||
-- maimai2_user_playlog | ||
ALTER TABLE maimai2_user_playlog ADD COLUMN ext_bool1 BOOLEAN; | ||
ALTER TABLE maimai2_user_playlog ADD COLUMN ext_num4 INTEGER; | ||
UPDATE maimai2_user_playlog SET ext_num4=0; | ||
|
||
-- maimai2_user_detail | ||
ALTER TABLE maimai2_user_detail ADD COLUMN current_play_count INTEGER; | ||
ALTER TABLE maimai2_user_detail ADD COLUMN rename_credit INTEGER; |
8 changes: 8 additions & 0 deletions
8
src/main/resources/db/migration/mysql/V255__add_maimai_140_ext_field.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,8 @@ | ||
-- maimai2_user_playlog | ||
ALTER TABLE maimai2_user_playlog ADD COLUMN ext_bool1 BOOLEAN; | ||
ALTER TABLE maimai2_user_playlog ADD COLUMN ext_num4 INTEGER; | ||
UPDATE maimai2_user_playlog SET ext_num4=0; | ||
|
||
-- maimai2_user_detail | ||
ALTER TABLE maimai2_user_detail ADD COLUMN current_play_count INTEGER; | ||
ALTER TABLE maimai2_user_detail ADD COLUMN rename_credit INTEGER; |
8 changes: 8 additions & 0 deletions
8
src/main/resources/db/migration/sqlite/V255__add_maimai_140_ext_field.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,8 @@ | ||
-- maimai2_user_playlog | ||
ALTER TABLE maimai2_user_playlog ADD COLUMN ext_bool1 BOOLEAN; | ||
ALTER TABLE maimai2_user_playlog ADD COLUMN ext_num4 INTEGER; | ||
UPDATE maimai2_user_playlog SET ext_num4=0; | ||
|
||
-- maimai2_user_detail | ||
ALTER TABLE maimai2_user_detail ADD COLUMN current_play_count INTEGER; | ||
ALTER TABLE maimai2_user_detail ADD COLUMN rename_credit INTEGER; |