12 lines
438 B
SQL
12 lines
438 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `art` on the `BedarfsausweisWohnen` table. All the data in the column will be lost.
|
|
- You are about to drop the column `orientierung` on the `BedarfsausweisWohnen` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "BedarfsausweisWohnen" DROP COLUMN "art",
|
|
DROP COLUMN "orientierung",
|
|
ADD COLUMN "planungswerte_bauteil" TEXT[] DEFAULT ARRAY[]::TEXT[];
|