migration_history.go 177 B

12345678910111213
  1. package store
  2. type MigrationHistory struct {
  3. Version string
  4. CreatedTs int64
  5. }
  6. type UpsertMigrationHistory struct {
  7. Version string
  8. }
  9. type FindMigrationHistory struct {
  10. }