2024-12-01 15:56:24 +01:00
|
|
|
package database
|
|
|
|
|
|
|
|
import "time"
|
2024-12-01 16:04:59 +01:00
|
|
|
// import "gorm.io/gorm"
|
2024-12-01 15:56:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
type Message struct {
|
|
|
|
Time time.Time `gorm:"not null;primary_key"`
|
|
|
|
Topic string `gorm:"not null"`
|
|
|
|
Payload string `gorm:"not null"`
|
|
|
|
}
|
|
|
|
|