Add animal bool to tags
This commit is contained in:
2
prisma/migrations/20251221153124_artwork_6/migration.sql
Normal file
2
prisma/migrations/20251221153124_artwork_6/migration.sql
Normal file
@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "ArtTag" ADD COLUMN "showOnAnimalPage" BOOLEAN NOT NULL DEFAULT false;
|
||||
@ -101,8 +101,9 @@ model ArtTag {
|
||||
updatedAt DateTime @updatedAt
|
||||
sortIndex Int @default(0)
|
||||
|
||||
name String @unique
|
||||
slug String @unique
|
||||
name String @unique
|
||||
slug String @unique
|
||||
showOnAnimalPage Boolean @default(false)
|
||||
|
||||
description String?
|
||||
|
||||
|
||||
Reference in New Issue
Block a user