10 lines
233 B
SQL
10 lines
233 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `anrede` on the `benutzer` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "benutzer" DROP COLUMN "anrede",
|
|
ADD COLUMN "empfaenger" VARCHAR(100);
|