10 lines
286 B
SQL
10 lines
286 B
SQL
create table `pending_receipt` (
|
|
`user` bigint(20) not null,
|
|
primary key (`user`),
|
|
constraint `pr_f_user`
|
|
foreign key(`user`) references `user`(`id`),
|
|
`send_time` bigint(20) not null,
|
|
`since_time` bigint(20) not null
|
|
) character set utf8mb4,
|
|
collate utf8mb4_unicode_ci;
|