salix/db/changes/10451-april/00-invoiceOut_queue.sql

14 lines
439 B
MySQL
Raw Normal View History

create table `vn`.`invoiceOut_queue`
(
invoiceFk int(10) unsigned not null,
dated datetime default now() null,
2022-04-28 12:59:29 +00:00
`status` VARCHAR(50) default '' null,
constraint invoiceOut_queue_pk
primary key (invoiceFk),
constraint invoiceOut_queue_invoiceOut_id_fk
foreign key (invoiceFk) references invoiceOut (id)
on update cascade on delete cascade
)
comment 'Queue for PDF invoicing';