15 lines
610 B
SQL
15 lines
610 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `businessRegistration` on the `Customer` table. All the data in the column will be lost.
|
|
- You are about to drop the column `commercialRegister` on the `Customer` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Customer` DROP COLUMN `businessRegistration`,
|
|
DROP COLUMN `commercialRegister`,
|
|
ADD COLUMN `businessRegistrationPath` VARCHAR(191) NULL,
|
|
ADD COLUMN `commercialRegisterNumber` VARCHAR(191) NULL,
|
|
ADD COLUMN `commercialRegisterPath` VARCHAR(191) NULL,
|
|
ADD COLUMN `foundingDate` DATETIME(3) NULL;
|