mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
12 lines
179 B
Go
12 lines
179 B
Go
package model
|
|
|
|
// Migrations - list of database migrations
|
|
var Migrations = []interface{}{
|
|
&Message{},
|
|
&Attachment{},
|
|
&User{},
|
|
&VideoArchive{},
|
|
&Sound{},
|
|
&UserEventLog{},
|
|
}
|