mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 07:25:03 +01:00
Added db init script. Combined all schemas under schemas. Persisted
updates and init
This commit is contained in:
12
schemas/patch-schema/08-kill-counts.sql
Normal file
12
schemas/patch-schema/08-kill-counts.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
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();
|
||||
Reference in New Issue
Block a user