mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 16:04:38 +01:00
Merge remote-tracking branch 'origin/main' into feature/psn-link
# Conflicts: # server/signserver/session.go
This commit is contained in:
14
patch-schema/03-event_quests.sql
Normal file
14
patch-schema/03-event_quests.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
BEGIN;
|
||||
|
||||
create table if not exists event_quests
|
||||
(
|
||||
id serial primary key,
|
||||
max_players integer,
|
||||
quest_type integer not null,
|
||||
quest_id integer not null,
|
||||
mark integer
|
||||
);
|
||||
|
||||
ALTER TABLE IF EXISTS public.servers DROP COLUMN IF EXISTS season;
|
||||
|
||||
END;
|
||||
7
patch-schema/04-trend-weapons.sql
Normal file
7
patch-schema/04-trend-weapons.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE public.trend_weapons
|
||||
(
|
||||
weapon_id integer NOT NULL,
|
||||
weapon_type integer NOT NULL,
|
||||
count integer DEFAULT 0,
|
||||
PRIMARY KEY (weapon_id)
|
||||
);
|
||||
6
patch-schema/05-gacha-roll-name.sql
Normal file
6
patch-schema/05-gacha-roll-name.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE IF EXISTS public.gacha_entries
|
||||
ADD COLUMN name text;
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user