9 lines
224 B
SQL
9 lines
224 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Made the column `avatarUrl` on table `Author` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Author" ALTER COLUMN "avatarUrl" SET NOT NULL;
|