Message holds information about a message.
| 6 | |
| 7 | // Message holds information about a message. |
| 8 | type Message struct { |
| 9 | ID uint `gorm:"autoIncrement;primaryKey;index"` |
| 10 | ApplicationID uint |
| 11 | Message string `gorm:"type:text"` |
| 12 | Title string `gorm:"type:text"` |
| 13 | Priority int |
| 14 | Extras []byte |
| 15 | Date time.Time |
| 16 | } |
| 17 | |
| 18 | // MessageExternal Model |
| 19 | // |
nothing calls this directly
no outgoing calls
no test coverage detected