2025-06-24 14:26:42 +04:00

10 lines
239 B
SQL

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