# Migration `20201104091229-renamed-user-form-submissions-name` This migration has been generated by Dm1tr1y147 at 11/4/2020, 2:12:29 PM. You can check out the [state of the schema](./schema.prisma) after the migration. ## Database Steps ```sql ``` ## Changes ```diff diff --git schema.prisma schema.prisma migration 20201009145620-add-user-email..20201104091229-renamed-user-form-submissions-name --- datamodel.dml +++ datamodel.dml @@ -2,9 +2,9 @@ // learn more about it in the docs: https://pris.ly/d/prisma-schema datasource db { provider = "postgres" - url = "***" + url = "***" } generator client { provider = "prisma-client-js" @@ -60,10 +60,10 @@ name String email String @unique @default("test@mail.com") forms Form[] - id Int @id @default(autoincrement()) - formsSubmissions FormSubmission[] + id Int @id @default(autoincrement()) + formSubmissions FormSubmission[] } model FormSubmission { answers Answer[] ```