11 lines
354 B
SQL
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;
|