Files
Chromacase/back/prisma/migrations/20220926065731_/migration.sql
2022-09-26 22:48:26 +09:00

11 lines
354 B
SQL

/*
Warnings:
- You are about to drop the column `title` on the `Lesson` table. All the data in the column will be lost.
- Added the required column `name` to the `Lesson` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Lesson" DROP COLUMN "title",
ADD COLUMN "name" TEXT NOT NULL;