10 lines
320 B
SQL
10 lines
320 B
SQL
/*
|
|
Warnings:
|
|
|
|
- The `planungswerte_bauteil` column on the `BedarfsausweisWohnen` table would be dropped and recreated. This will lead to data loss if there is data in the column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "BedarfsausweisWohnen" DROP COLUMN "planungswerte_bauteil",
|
|
ADD COLUMN "planungswerte_bauteil" JSON[];
|