refactor-db #33

Merged
vivy-agent merged 42 commits from refactor-db into main 2026-05-26 21:33:21 +07:00
7 changed files with 7363 additions and 2356 deletions
Showing only changes of commit b8b30a930c - Show all commits

View File

@ -477,6 +477,18 @@ model Character {
@@map("characters") @@map("characters")
} }
model Staff {
id String @id @db.Uuid @default(uuid(7))
name String @db.VarChar(255)
image String? @db.VarChar(255)
mal_id Int? @unique
deleted_at DateTime? @db.Timestamptz()
updated_at DateTime @updatedAt @db.Timestamptz()
created_at DateTime @default(now()) @db.Timestamptz()
@@map("staff")
}
/** /**