mirror of
https://github.com/silviu20092/mod-reforging
synced 2025-11-29 16:38:15 +08:00
Remove old unnecessary sub-directory
This commit is contained in:
0
data/sql/db-characters/base/.gitkeep
Normal file
0
data/sql/db-characters/base/.gitkeep
Normal file
9
data/sql/db-characters/base/character_reforging.sql
Normal file
9
data/sql/db-characters/base/character_reforging.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS `character_reforging`;
|
||||
CREATE TABLE `character_reforging`(
|
||||
`guid` int unsigned not null,
|
||||
`item_guid` int unsigned not null,
|
||||
`stat_decrease` int unsigned not null,
|
||||
`stat_increase` int unsigned not null,
|
||||
`stat_value` int unsigned not null,
|
||||
PRIMARY KEY (`item_guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
Reference in New Issue
Block a user