/* 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;