add name column to share table

This commit is contained in:
Francis Cao 2026-01-22 10:41:55 -08:00
parent 8f55ed9da9
commit 63d2bfe118
2 changed files with 4 additions and 1 deletions

View file

@ -342,6 +342,7 @@ model Board {
model Share {
id String @id() @map("share_id") @db.Uuid
entityId String @map("entity_id") @db.Uuid
name String @db.VarChar(200)
shareType Int @map("share_type") @db.Integer
slug String @unique() @db.VarChar(100)
parameters Json