Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Reset migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
celian-rib committed Sep 14, 2022
1 parent a11837e commit 53973e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CREATE TYPE "MediaType" AS ENUM ('NONE', 'TEXT', 'PICTURE', 'VIDEO', 'MUSIC');

-- CreateEnum
CREATE TYPE "Pronouns" AS ENUM ('UNKOWN', 'HE_HIM', 'SHE_HER');
CREATE TYPE "Pronouns" AS ENUM ('UNKNOWN', 'HE_HIM', 'SHE_HER', 'OTHER');

-- CreateTable
CREATE TABLE "User" (
Expand All @@ -16,7 +16,7 @@ CREATE TABLE "User" (
"username" TEXT NOT NULL,
"displayName" TEXT NOT NULL,
"avatarUrl" TEXT,
"pronouns" "Pronouns" NOT NULL DEFAULT 'UNKOWN',
"pronouns" "Pronouns" NOT NULL DEFAULT 'UNKNOWN',
"about" TEXT,
"isDeveloper" BOOLEAN NOT NULL DEFAULT false,
"isAdmin" BOOLEAN NOT NULL DEFAULT false,
Expand Down

0 comments on commit 53973e2

Please sign in to comment.