Compare commits

..

1 Commits

Author SHA1 Message Date
Adrian Zürcher
857d84d3a9 fix wrong type to string 2026-02-14 14:55:11 +01:00

View File

@@ -3,5 +3,5 @@ package models
type Workspace struct {
Id uint `gorm:"primaryKey" json:"id"`
Name string `gorm:"column:name" json:"name"`
Description Permissions `gorm:"type:json" json:"description"`
Description string `gorm:"type:json" json:"description"`
}