|
create table `vn`.`clientConsumptionQueue`
|
|
(
|
|
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
params json not null,
|
|
queued datetime default current_timestamp() not null,
|
|
printed datetime null,
|
|
status varchar(50) default '' null
|
|
)
|
|
comment 'Queue for client consumption PDF mailing';
|