nestjs_boilerpalte/server/prisma/migrations/20241209010856_fix/migration.sql
2024-12-09 04:10:04 +01:00

10 lines
219 B
SQL

/*
Warnings:
- You are about to drop the column `firstName` on the `users` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "users" DROP COLUMN "firstName",
ADD COLUMN "name" TEXT;