diff --git a/database/sql/1-db_database.sql b/database/sql/1-db_database.sql
index 8581f00075..c013b7a39f 100644
--- a/database/sql/1-db_database.sql
+++ b/database/sql/1-db_database.sql
@@ -12796,14 +12796,6 @@ CREATE TABLE IF NOT EXISTS `drop_data_global` (
KEY `mobid` (`continent`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=5 ;
-INSERT INTO `drop_data_global` (`id`, `continent`, `itemid`, `minimum_quantity`, `maximum_quantity`, `questid`, `chance`, `comments`) VALUES
-(1, -1, 4031865, 1, 1, 0, 35000, 'NX Card 100 PTS'),
-(2, -1, 4031866, 1, 1, 0, 20000, 'NX Card 250 PTS'),
-(3, -1, 4001126, 1, 2, 0, 8000, 'Maple Leaves'),
-(4, -1, 2049100, 1, 1, 0, 1200, 'Chaos Scroll 60%'),
-(5, -1, 2340000, 1, 1, 0, 1200, 'White Scroll'),
-(6, -1, 4001006, 1, 1, 0, 10000, 'Flaming Feather');
-
CREATE TABLE IF NOT EXISTS `dueyitems` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`PackageId` int(10) unsigned NOT NULL DEFAULT '0',
diff --git a/src/main/resources/db/151-global-drop-data.sql b/src/main/resources/db/151-global-drop-data.sql
new file mode 100644
index 0000000000..f477dcd1df
--- /dev/null
+++ b/src/main/resources/db/151-global-drop-data.sql
@@ -0,0 +1,7 @@
+INSERT INTO drop_data_global (continent, itemid, minimum_quantity, maximum_quantity, questid, chance, comments)
+VALUES (-1, 4031865, 1, 1, 0, 35000, 'NX Card 100 PTS'),
+ (-1, 4031866, 1, 1, 0, 20000, 'NX Card 250 PTS'),
+ (-1, 4001126, 1, 2, 0, 8000, 'Maple Leaves'),
+ (-1, 2049100, 1, 1, 0, 1200, 'Chaos Scroll 60%'),
+ (-1, 2340000, 1, 1, 0, 1200, 'White Scroll'),
+ (-1, 4001006, 1, 1, 0, 10000, 'Flaming Feather');
\ No newline at end of file
diff --git a/src/main/resources/db/changelog.xml b/src/main/resources/db/changelog.xml
index 85c8055548..a77b5ef2ed 100644
--- a/src/main/resources/db/changelog.xml
+++ b/src/main/resources/db/changelog.xml
@@ -136,4 +136,8 @@
+
+
+
+
\ No newline at end of file