13 lines
790 B
SQL
13 lines
790 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to alter the column `quantity` on the `Stock_Balance` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Decimal(10,2)`.
|
|
- You are about to alter the column `totalCost` on the `Stock_Balance` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Decimal(10,2)`.
|
|
- You are about to alter the column `avgCost` on the `Stock_Balance` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Decimal(10,2)`.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Stock_Balance` MODIFY `quantity` DECIMAL(10, 2) NOT NULL,
|
|
MODIFY `totalCost` DECIMAL(10, 2) NOT NULL,
|
|
MODIFY `avgCost` DECIMAL(10, 2) NOT NULL;
|