Files
Erupe/patch-schema/04-trend-weapons.sql
2023-07-30 19:40:11 +10:00

7 lines
161 B
SQL

CREATE TABLE public.trend_weapons
(
weapon_id integer NOT NULL,
weapon_type integer NOT NULL,
count integer DEFAULT 0,
PRIMARY KEY (weapon_id)
);