13 lines
406 B
SQL
13 lines
406 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `ausweistyp` to the `Provisionen` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Aufnahme" ALTER COLUMN "flaeche" SET DATA TYPE DOUBLE PRECISION,
|
|
ALTER COLUMN "nutzflaeche" SET DATA TYPE DOUBLE PRECISION;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Provisionen" ADD COLUMN "ausweistyp" "AusweisTyp" NOT NULL;
|