Fix nullability of columns

This commit is contained in:
Dustin Pianalto
2021-01-23 20:10:48 -09:00
parent 106333c26b
commit 454cced2a7
9 changed files with 155 additions and 36 deletions
+3 -1
View File
@@ -1,9 +1,11 @@
package geeksbot
import "database/sql"
type Message struct {
ID string
CreatedAt int64
ModifiedAt int64
ModifiedAt sql.NullTime
Content string
PreviousContent []string
Channel Channel