10 lines
395 B
SQL
10 lines
395 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `wageDate` on the `CustomerBranch` table. All the data in the column will be lost.
|
|
- Added the required column `wageRate` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "CustomerBranch" DROP COLUMN "wageDate",
|
|
ADD COLUMN "wageRate" INTEGER NOT NULL;
|