21 lines
876 B
SQL
21 lines
876 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `alte_ausweis_id` on the `BedarfsausweisWohnen` table. All the data in the column will be lost.
|
|
- You are about to drop the column `alte_ausweis_id` on the `VerbrauchsausweisGewerbe` table. All the data in the column will be lost.
|
|
- You are about to drop the column `alte_ausweis_id` on the `VerbrauchsausweisWohnen` table. All the data in the column will be lost.
|
|
- Made the column `mime` on table `Unterlage` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "BedarfsausweisWohnen" DROP COLUMN "alte_ausweis_id";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Unterlage" ALTER COLUMN "mime" SET NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "VerbrauchsausweisGewerbe" DROP COLUMN "alte_ausweis_id";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "VerbrauchsausweisWohnen" DROP COLUMN "alte_ausweis_id";
|