summaryrefslogtreecommitdiff
path: root/jws/epibazaar/shop/src/main/resources/db
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
commit967be9e750221ab2ab783f95df79bb26d290a45e (patch)
tree6802900a5e975f9f68b169f0f503f040056d6952 /jws/epibazaar/shop/src/main/resources/db
add: added projectsHEADmain
Diffstat (limited to 'jws/epibazaar/shop/src/main/resources/db')
-rw-r--r--jws/epibazaar/shop/src/main/resources/db/migration/V1__Init.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/jws/epibazaar/shop/src/main/resources/db/migration/V1__Init.sql b/jws/epibazaar/shop/src/main/resources/db/migration/V1__Init.sql
new file mode 100644
index 0000000..0161cb5
--- /dev/null
+++ b/jws/epibazaar/shop/src/main/resources/db/migration/V1__Init.sql
@@ -0,0 +1,15 @@
+CREATE TABLE IF NOT EXISTS "shop"
+(
+ id SERIAL PRIMARY KEY NOT NULL,
+
+ price_multiplier FLOAT NOT NULL,
+ upgrade_price FLOAT NOT NULL
+);
+
+CREATE TABLE IF NOT EXISTS "item"
+(
+ id SERIAL PRIMARY KEY NOT NULL,
+
+ type VARCHAR(64) NOT NULL,
+ quantity FLOAT NOT NULL
+);