mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-12-04 15:21:05 +01:00
9 lines
234 B
SQL
9 lines
234 B
SQL
create table `user__token` (
|
|
`id` varchar(32) not null primary key,
|
|
`created` datetime not null,
|
|
`expired` tinyint not null default 0,
|
|
`user_id` int not null,
|
|
|
|
foreign key (`user_id`) references `user`(`id`) on delete cascade
|
|
);
|