mirror of
https://github.com/thomiceli/opengist.git
synced 2025-05-14 08:12:09 +02:00
7 lines
116 B
Go
7 lines
116 B
Go
package db
|
|
|
|
type GistTopic struct {
|
|
GistID uint `gorm:"primaryKey"`
|
|
Topic string `gorm:"primaryKey;size:50"`
|
|
}
|