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