mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-23 02:02:00 +00:00
11 lines
472 B
MySQL
11 lines
472 B
MySQL
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- Added the required column `baseAmount` to the `BillFormula` table without a default value. This is not possible if the table is not empty.
|
||
|
- Added the required column `discountPercentage` to the `BillFormula` table without a default value. This is not possible if the table is not empty.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "BillFormula" ADD COLUMN "baseAmount" DOUBLE PRECISION NOT NULL,
|
||
|
ADD COLUMN "discountPercentage" DOUBLE PRECISION NOT NULL;
|