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