implement Trend Weapons

This commit is contained in:
wish
2023-07-30 19:40:11 +10:00
parent 00a06fab17
commit d79481f0c8
3 changed files with 51 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE public.trend_weapons
(
weapon_id integer NOT NULL,
weapon_type integer NOT NULL,
count integer DEFAULT 0,
PRIMARY KEY (weapon_id)
);