daphnis/prisma/migrations/20240624065813_auth/migration.sql
2024-06-29 01:22:22 -04:00

13 lines
510 B
SQL

/*
Warnings:
- You are about to drop the column `firstName` on the `user` table. All the data in the column will be lost.
- You are about to drop the column `lastName` on the `user` table. All the data in the column will be lost.
- Added the required column `username` to the `User` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE `user` DROP COLUMN `firstName`,
DROP COLUMN `lastName`,
ADD COLUMN `username` VARCHAR(191) NOT NULL;