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