From 9275802466e2c68cbc9cf742f0e1ceae81b280b3 Mon Sep 17 00:00:00 2001 From: P0nk Date: Mon, 30 Jun 2025 17:22:56 +0200 Subject: [PATCH] Add shops changeset --- src/main/resources/db/011-shop.sql | 6 ++++++ src/main/resources/db/changelog.xml | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 src/main/resources/db/011-shop.sql diff --git a/src/main/resources/db/011-shop.sql b/src/main/resources/db/011-shop.sql new file mode 100644 index 0000000000..a4736eeeb6 --- /dev/null +++ b/src/main/resources/db/011-shop.sql @@ -0,0 +1,6 @@ +CREATE TABLE lb_shops +( + shopid INT UNSIGNED NOT NULL AUTO_INCREMENT, + npcid INT NOT NULL DEFAULT '0', + PRIMARY KEY (shopid) +); \ No newline at end of file diff --git a/src/main/resources/db/changelog.xml b/src/main/resources/db/changelog.xml index f78175518e..649e062c6d 100644 --- a/src/main/resources/db/changelog.xml +++ b/src/main/resources/db/changelog.xml @@ -45,4 +45,8 @@ + + + + \ No newline at end of file