mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 10:35:04 +03:00
.. | ||
README.md | ||
schema.prisma | ||
steps.json |
Migration 20201019134607-user
This migration has been generated by Martin Sosic at 10/19/2020, 3:46:07 PM. You can check out the state of the schema after the migration.
Database Steps
CREATE TABLE "User" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"email" TEXT NOT NULL,
"password" TEXT NOT NULL
)
CREATE UNIQUE INDEX "User.email_unique" ON "User"("email")
Changes
diff --git schema.prisma schema.prisma
migration 20201001135152-init..20201019134607-user
--- datamodel.dml
+++ datamodel.dml
@@ -1,15 +1,21 @@
datasource db {
provider = "sqlite"
- url = "***"
+ url = "***"
}
generator client {
provider = "prisma-client-js"
output = "../server/node_modules/.prisma/client"
}
+model User {
+ id Int @id @default(autoincrement())
+ email String @unique
+ password String
+}
+
model Project {
id Int @id @default(autoincrement())
name String