mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
9 lines
206 B
PL/PgSQL
9 lines
206 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE IF EXISTS public.guilds
|
|
ADD COLUMN IF NOT EXISTS interception_maps bytea;
|
|
|
|
ALTER TABLE IF EXISTS public.guild_characters
|
|
ADD COLUMN IF NOT EXISTS interception_points bytea;
|
|
|
|
END; |