27 lines
1.1 KiB
PL/PgSQL
27 lines
1.1 KiB
PL/PgSQL
/*
|
|
Warnings:
|
|
|
|
- The values [irregular] on the enum `IncomeFrequency` will be removed. If these variants are still used in the database, this will fail.
|
|
- You are about to drop the column `fundingStrategy` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `typicalIncomeCents` on the `User` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterEnum
|
|
BEGIN;
|
|
CREATE TYPE "IncomeFrequency_new" AS ENUM ('weekly', 'biweekly', 'monthly');
|
|
ALTER TABLE "User" ALTER COLUMN "incomeFrequency" DROP DEFAULT;
|
|
ALTER TABLE "User" ALTER COLUMN "incomeFrequency" TYPE "IncomeFrequency_new" USING ("incomeFrequency"::text::"IncomeFrequency_new");
|
|
ALTER TYPE "IncomeFrequency" RENAME TO "IncomeFrequency_old";
|
|
ALTER TYPE "IncomeFrequency_new" RENAME TO "IncomeFrequency";
|
|
DROP TYPE "IncomeFrequency_old";
|
|
ALTER TABLE "User" ALTER COLUMN "incomeFrequency" SET DEFAULT 'biweekly';
|
|
COMMIT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" DROP COLUMN "fundingStrategy",
|
|
DROP COLUMN "typicalIncomeCents",
|
|
ALTER COLUMN "incomeFrequency" SET DEFAULT 'biweekly';
|
|
|
|
-- DropEnum
|
|
DROP TYPE "FundingStrategy";
|