mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
9 lines
226 B
PL/PgSQL
9 lines
226 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE IF EXISTS public.users
|
|
ADD COLUMN IF NOT EXISTS last_login timestamp without time zone;
|
|
|
|
ALTER TABLE IF EXISTS public.users
|
|
ADD COLUMN IF NOT EXISTS return_expires timestamp without time zone;
|
|
|
|
END; |