Semaphore/db/migrations/v1.2.0.sql
2016-05-24 10:55:48 +01:00

8 lines
265 B
SQL

create table `user__token` (
`id` varchar(32) not null primary key,
`created` datetime not null,
`expired` tinyint(1) not null default 0,
`user_id` int(11) not null,
foreign key (`user_id`) references user(`id`) on delete cascade
) ENGINE=InnoDB CHARSET=utf8;