step 1 to improve delete feature

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO
2019-07-14 19:20:49 +02:00
parent 7015e76a11
commit d1da0c93e7
23 changed files with 92 additions and 537 deletions

View File

@ -470,3 +470,13 @@ create table if not exists `timestamp` (
primary key (`id`)
) Engine=InnoDB;
create table if not exists `deleted` (
`id` bigint unsigned not null auto_increment,
`email` varchar(128) not null,
`reason` varchar(128) not null,
`date1` int unsigned not null,
`date2` int unsigned not null,
`deleted` tinyint(1) default 0,
primary key (`id`)
) Engine=InnoDB;