mirror of
https://github.com/pressly/goose.git
synced 2025-09-04 19:37:19 +00:00
16 lines
203 B
Go
16 lines
203 B
Go
package gomigrations
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v3"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigrationNoTx(nil, down007)
|
|
}
|
|
|
|
func down007(db *sql.DB) error {
|
|
return dropTable(db, "delta")
|
|
}
|