mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 22:06:33 +00:00
4 lines
213 B
SQL
4 lines
213 B
SQL
ALTER TABLE public.users
|
|
ADD COLUMN IF NOT EXISTS created_at timestamp not null default now(),
|
|
ADD COLUMN IF NOT EXISTS last_login timestamp null,
|
|
ADD COLUMN IF NOT EXISTS is_enabled bool not null default true; |