6 lines
231 B
SQL
Executable file
6 lines
231 B
SQL
Executable file
ALTER TABLE `shipment_invoices` ADD `date_issued` DATE NOT NULL AFTER `freight_forwarder_id`;
|
|
|
|
ALTER TABLE `shipment_invoices` ADD `created` DATETIME NOT NULL AFTER `id` ,
|
|
ADD `modified` DATETIME NOT NULL AFTER `created`;
|
|
|