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