63 lines
4.1 KiB
SQL
63 lines
4.1 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to alter the column `noteDeutsch` on the `anmeldungen` table. The data in that column could be lost. The data in that column will be cast from `String` to `Int`.
|
|
- You are about to alter the column `noteMathe` on the `anmeldungen` table. The data in that column could be lost. The data in that column will be cast from `String` to `Int`.
|
|
- You are about to alter the column `timestamp` on the `anmeldungen` table. The data in that column could be lost. The data in that column will be cast from `BigInt` to `DateTime`.
|
|
- Added the required column `geburtsdatum` to the `anmeldungen` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `hausnummer` to the `anmeldungen` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `ort` to the `anmeldungen` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `plz` to the `anmeldungen` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `schulart` to the `anmeldungen` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `strasse` to the `anmeldungen` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `telefon` to the `anmeldungen` table without a default value. This is not possible if the table is not empty.
|
|
- Made the column `noteDeutsch` on table `anmeldungen` required. This step will fail if there are existing NULL values in that column.
|
|
- Made the column `noteMathe` on table `anmeldungen` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- RedefineTables
|
|
PRAGMA defer_foreign_keys=ON;
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_anmeldungen" (
|
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
"anrede" TEXT NOT NULL,
|
|
"vorname" TEXT NOT NULL,
|
|
"nachname" TEXT NOT NULL,
|
|
"geburtsdatum" TEXT NOT NULL,
|
|
"strasse" TEXT NOT NULL,
|
|
"hausnummer" TEXT NOT NULL,
|
|
"ort" TEXT NOT NULL,
|
|
"plz" TEXT NOT NULL,
|
|
"telefon" TEXT NOT NULL,
|
|
"email" TEXT NOT NULL,
|
|
"schulart" TEXT NOT NULL,
|
|
"schulklasse" TEXT,
|
|
"noteDeutsch" INTEGER NOT NULL,
|
|
"noteMathe" INTEGER NOT NULL,
|
|
"sozialverhalten" TEXT,
|
|
"motivation" TEXT,
|
|
"alter" INTEGER,
|
|
"status" TEXT NOT NULL DEFAULT 'OFFEN',
|
|
"processedBy" TEXT,
|
|
"processedAt" DATETIME,
|
|
"praktikumId" INTEGER,
|
|
"zugewiesenId" INTEGER,
|
|
"wunsch1Id" INTEGER,
|
|
"wunsch2Id" INTEGER,
|
|
"wunsch3Id" INTEGER,
|
|
"timestamp" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
CONSTRAINT "anmeldungen_praktikumId_fkey" FOREIGN KEY ("praktikumId") REFERENCES "Praktikumszeitraum" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT "anmeldungen_zugewiesenId_fkey" FOREIGN KEY ("zugewiesenId") REFERENCES "Dienststelle" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT "anmeldungen_wunsch1Id_fkey" FOREIGN KEY ("wunsch1Id") REFERENCES "Dienststelle" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT "anmeldungen_wunsch2Id_fkey" FOREIGN KEY ("wunsch2Id") REFERENCES "Dienststelle" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT "anmeldungen_wunsch3Id_fkey" FOREIGN KEY ("wunsch3Id") REFERENCES "Dienststelle" ("id") ON DELETE SET NULL ON UPDATE CASCADE
|
|
);
|
|
INSERT INTO "new_anmeldungen" ("anrede", "email", "id", "nachname", "noteDeutsch", "noteMathe", "sozialverhalten", "status", "timestamp", "vorname", "wunsch1Id", "wunsch2Id", "wunsch3Id", "zugewiesenId") SELECT "anrede", "email", "id", "nachname", "noteDeutsch", "noteMathe", "sozialverhalten", "status", "timestamp", "vorname", "wunsch1Id", "wunsch2Id", "wunsch3Id", "zugewiesenId" FROM "anmeldungen";
|
|
DROP TABLE "anmeldungen";
|
|
ALTER TABLE "new_anmeldungen" RENAME TO "anmeldungen";
|
|
CREATE INDEX "anmeldungen_status_idx" ON "anmeldungen"("status");
|
|
CREATE INDEX "anmeldungen_processedAt_idx" ON "anmeldungen"("processedAt");
|
|
CREATE INDEX "anmeldungen_zugewiesenId_idx" ON "anmeldungen"("zugewiesenId");
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|