github.com/adharshmk96/stk@v1.2.3/pkg/sqlMigrator/dbrepo.go (about) 1 package sqlmigrator 2 3 type DBRepo interface { 4 Exec(query string) error 5 PushHistory(migration *MigrationDBEntry) error 6 LoadHistory() ([]*MigrationDBEntry, error) 7 InitMigrationTable() error 8 DeleteMigrationTable() error 9 }