mm-auth-service/sql/V8__Create_user_logs_table.sql
2025-07-25 18:00:13 +07:00

7 lines
202 B
SQL

create table "user_logs"
(
"id" char(36) not null primary key,
"user_id" char(36) not null,
"last_signin" timestamp not null
);
comment on table "user_logs" is 'null';