mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-02-04 17:22:16 +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)
|
|
); |