Files
Erupe/schemas/patch-schema/04-trend-weapons.sql
2024-01-24 04:35:24 +00: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)
);