7 lines
202 B
MySQL
7 lines
202 B
MySQL
|
|
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';
|