12345678910111213141516171819 |
- /*
- Warnings:
- - You are about to drop the column `name` on the `users` table. All the data in the column will be lost.
- - You are about to drop the column `password_hash` on the `users` table. All the data in the column will be lost.
- - Added the required column `email` to the `users` table without a default value. This is not possible if the table is not empty.
- - Added the required column `firstname` to the `users` table without a default value. This is not possible if the table is not empty.
- - Added the required column `lastname` to the `users` table without a default value. This is not possible if the table is not empty.
- - Added the required column `password` to the `users` table without a default value. This is not possible if the table is not empty.
- */
- -- AlterTable
- ALTER TABLE "users" DROP COLUMN "name",
- DROP COLUMN "password_hash",
- ADD COLUMN "email" TEXT NOT NULL,
- ADD COLUMN "firstname" TEXT NOT NULL,
- ADD COLUMN "lastname" TEXT NOT NULL,
- ADD COLUMN "password" TEXT NOT NULL;
|