mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00:00
14 lines
177 B
Go
14 lines
177 B
Go
package store
|
|
|
|
type MigrationHistory struct {
|
|
Version string
|
|
CreatedTs int64
|
|
}
|
|
|
|
type UpsertMigrationHistory struct {
|
|
Version string
|
|
}
|
|
|
|
type FindMigrationHistory struct {
|
|
}
|