From be2d7ca7f8e92f3a238fe590133a8e032039d89c Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Sat, 20 Jul 2024 19:55:02 +0200 Subject: [PATCH] new migration --- prisma/migrations/20240720175428_add_field/migration.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 prisma/migrations/20240720175428_add_field/migration.sql diff --git a/prisma/migrations/20240720175428_add_field/migration.sql b/prisma/migrations/20240720175428_add_field/migration.sql new file mode 100644 index 0000000..34d7769 --- /dev/null +++ b/prisma/migrations/20240720175428_add_field/migration.sql @@ -0,0 +1,8 @@ +/* + Warnings: + + - Added the required column `type` to the `Sprite` table without a default value. This is not possible if the table is not empty. + +*/ +-- AlterTable +ALTER TABLE `Sprite` ADD COLUMN `type` VARCHAR(191) NOT NULL;