mm-auth-service/sql/V8__Create_user_logs_table.sql

7 lines
202 B
MySQL
Raw Permalink Normal View History

2025-07-25 11:00:13 +00:00
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';