11 lines
343 B
SQL
11 lines
343 B
SQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `metaData` on the `Products` table. All the data in the column will be lost.
|
||
|
|
- You are about to drop the column `productType` on the `Products` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `Products` DROP COLUMN `metaData`,
|
||
|
|
DROP COLUMN `productType`;
|