Semaphore/db/migrations/v1.2.0.sql

8 lines
265 B
MySQL
Raw Normal View History

create table `user__token` (
`id` varchar(32) not null primary key,
2016-04-29 09:33:08 +02:00
`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;