9 lines
205 B
SQL
9 lines
205 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `invoice_id` on the `InvoiceItem` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `InvoiceItem` DROP COLUMN `invoice_id`;
|