and the contents of that file is now just this? ``` CREATE TABLE "User" ( "id" INTEGER NOT NULL

and the contents of that file is now just this?
CREATE TABLE "User" ( 
    "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, 
    "email" TEXT NOT NULL, 
    "name" TEXT 
);

CREATE UNIQUE INDEX "User_email_key" ON "User"("email");
Was this page helpful?