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)
);