mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
12 lines
329 B
SQL
12 lines
329 B
SQL
CREATE TABLE public.kill_logs
|
|
(
|
|
id serial,
|
|
character_id integer NOT NULL,
|
|
monster integer NOT NULL,
|
|
quantity integer NOT NULL,
|
|
timestamp timestamp with time zone NOT NULL,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
ALTER TABLE IF EXISTS public.guild_characters
|
|
ADD COLUMN box_claimed timestamp with time zone DEFAULT now(); |