✨ (user) create validation in user update data
This commit is contained in:
12
prisma/migrations/20250627173346_initial/migration.sql
Normal file
12
prisma/migrations/20250627173346_initial/migration.sql
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the column `commentPicture` on the `users` table. All the data in the column will be lost.
|
||||
- You are about to drop the column `profilePicture` on the `users` table. All the data in the column will be lost.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "users" DROP COLUMN "commentPicture",
|
||||
DROP COLUMN "profilePicture",
|
||||
ADD COLUMN "avatar" TEXT,
|
||||
ADD COLUMN "commentBackground" TEXT;
|
||||
Reference in New Issue
Block a user