mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 01:37:02 +02:00
added pop3 import to the gui
This commit is contained in:
@ -386,3 +386,23 @@ create table if not exists `online` (
|
||||
unique(`username`,`ipaddr`)
|
||||
) Engine=InnoDB;
|
||||
|
||||
|
||||
create table if not exists `import` (
|
||||
`id` int not null auto_increment primary key,
|
||||
`type` varchar(255) not null,
|
||||
`username` varchar(255) not null,
|
||||
`password` varchar(255) not null,
|
||||
`server` varchar(255) not null,
|
||||
`created` int default 0,
|
||||
`started` int default 0,
|
||||
`finished` int default 0,
|
||||
`updated` int default 0,
|
||||
`status` int default 0,
|
||||
`total` int default 0,
|
||||
`imported` int default 0,
|
||||
`duplicate` int default 0,
|
||||
`error` int default 0,
|
||||
`cleared` int default 0
|
||||
) Engine=InnoDB;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user