salix/db/.archive/224701/00-clientConsumptionQueue.sql

10 lines
363 B
MySQL
Raw Normal View History

2022-09-29 12:43:27 +00:00
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';