mirror of
https://github.com/azaion/admin.git
synced 2026-04-23 01:26:33 +00:00
3 lines
149 B
SQL
3 lines
149 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; |