fixing database schema for message removal

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO
2019-07-28 11:02:44 +02:00
parent 4b2eefb712
commit b80c588a10
5 changed files with 11 additions and 8 deletions

View File

@ -473,10 +473,13 @@ create table if not exists `timestamp` (
create table if not exists `deleted` (
`id` bigint unsigned not null unique,
`email` varchar(128) not null,
`reason` varchar(128) not null,
`requestor` varchar(128) not null,
`reason1` varchar(128) not null,
`date1` int unsigned default 0,
`approver` varchar(128) default null,
`reason2` varchar(128) not null,
`date2` int unsigned default 0,
`approved` tinyint(1) default 0,
`deleted` tinyint(1) default 0,
key (`id`),
key (deleted)