-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
NeumimTo
committed
Jul 10, 2019
1 parent
7f2bc35
commit 82e05f6
Showing
10 changed files
with
37 additions
and
19 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
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
5 changes: 5 additions & 0 deletions
5
Plugin/src/main/resources/assets/nt-rpg/sql/mysql/062519-attrpoints-spent.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,5 @@ | ||
--@id:add-attr-pointsspent | ||
--@author:NeumimTo | ||
--@date:25.06.2019 18:20 | ||
--@note:Add column for attribute points spent sum | ||
alter table rpg_character_base add column attribute_points_spent int default 0; |
10 changes: 10 additions & 0 deletions
10
Plugin/src/main/resources/assets/nt-rpg/sql/mysql/071019-add-missing-columns.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,10 @@ | ||
--@id:add-missing-columns | ||
--@author:NeumimTo | ||
--@date:10.07.2019 23:00 | ||
--@note:Add some missing column | ||
alter table rpg_character_attribute add column created timestamp not null default now(); | ||
alter table rpg_character_attribute add column updated timestamp not null default now(); | ||
alter table rpg_character_class add column updated timestamp not null default now(); | ||
alter table rpg_character_class add column created timestamp not null default now(); | ||
alter table rpg_character_skill add column created timestamp not null default now(); | ||
alter table rpg_character_skill add column updated timestamp not null default now(); |
5 changes: 0 additions & 5 deletions
5
Plugin/src/main/resources/assets/nt-rpg/sql/mysql/250619-attrpoints-spent.sql
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
Plugin/src/main/resources/assets/nt-rpg/sql/postgresql/062519-attrpoints-spent.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,5 @@ | ||
--@id:add-attr-pointsspent | ||
--@author:NeumimTo | ||
--@date:25.06.2019 18:20 | ||
--@note:Add column for attribute points spent sum | ||
alter table rpg_character_base add column attribute_points_spent int default 0; |
10 changes: 10 additions & 0 deletions
10
Plugin/src/main/resources/assets/nt-rpg/sql/postgresql/071019-add-missing-columns.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,10 @@ | ||
--@id:add-missing-columns | ||
--@author:NeumimTo | ||
--@date:10.07.2019 23:00 | ||
--@note:Add some missing column | ||
alter table rpg_character_attribute add column created timestamp not null default now(); | ||
alter table rpg_character_attribute add column updated timestamp not null default now(); | ||
alter table rpg_character_class add column updated timestamp not null default now(); | ||
alter table rpg_character_class add column created timestamp not null default now(); | ||
alter table rpg_character_skill add column created timestamp not null default now(); | ||
alter table rpg_character_skill add column updated timestamp not null default now(); |
5 changes: 0 additions & 5 deletions
5
Plugin/src/main/resources/assets/nt-rpg/sql/postgresql/250619-attrpoints-spent.sql
This file was deleted.
Oops, something went wrong.