Add shops changeset

This commit is contained in:
P0nk
2025-06-30 17:22:56 +02:00
parent ed01c6a54b
commit 9275802466
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
CREATE TABLE lb_shops
(
shopid INT UNSIGNED NOT NULL AUTO_INCREMENT,
npcid INT NOT NULL DEFAULT '0',
PRIMARY KEY (shopid)
);

View File

@@ -45,4 +45,8 @@
<sqlFile path="db/010-storage.sql"/>
</changeSet>
<changeSet id="11" author="Ponk">
<sqlFile path="db/011-shop.sql"/>
</changeSet>
</databaseChangeLog>