mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
7 lines
161 B
SQL
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)
|
|
); |