mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-10-31 22:12:26 +01:00 
			
		
		
		
	fixing database schema for message removal
Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
		| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user