mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
35 lines
641 B
Go
35 lines
641 B
Go
|
package sqlite3
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/c9s/rockhopper"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
AddMigration(upKlineUniqueIdx, downKlineUniqueIdx)
|
||
|
|
||
|
}
|
||
|
|
||
|
func upKlineUniqueIdx(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
|
||
|
// This code is executed when the migration is applied.
|
||
|
|
||
|
_, err = tx.ExecContext(ctx, "SELECT 'up SQL query';")
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
func downKlineUniqueIdx(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
|
||
|
// This code is executed when the migration is rolled back.
|
||
|
|
||
|
_, err = tx.ExecContext(ctx, "SELECT 'down SQL query';")
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return err
|
||
|
}
|