13 lines
395 B
SQL
13 lines
395 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `first_name` on the `users` table. All the data in the column will be lost.
|
|
- You are about to drop the column `last_name` on the `users` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "users" DROP COLUMN "first_name",
|
|
DROP COLUMN "last_name",
|
|
ADD COLUMN "firstName" TEXT,
|
|
ADD COLUMN "lastName" TEXT;
|