mqtt-archiver/src/ma/database/abstract_database.go

13 lines
196 B
Go
Raw Normal View History

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