10 lines
239 B
SQL
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;
|