Skip to content

Commit

Permalink
update timestamps 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Shandling committed Oct 10, 2023
1 parent d3b65bd commit 0422254
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
)

func init() {
MigrationClient.AddMigration(Up_20230918221115, Down_20230918221115)
MigrationClient.AddMigration(Up_20231004144339, Down_20231004144339)
}

func Up_20230918221115(tx *sql.Tx) error {
func Up_20231004144339(tx *sql.Tx) error {
stmt := `
UPDATE teams
SET
Expand All @@ -27,6 +27,6 @@ WHERE
return nil
}

func Down_20230918221115(tx *sql.Tx) error {
func Down_20231004144339(tx *sql.Tx) error {
return nil
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/stretchr/testify/require"
)

func TestUp_20230918221115(t *testing.T) {
func TestUp_20231004144339(t *testing.T) {
db := applyUpToPrev(t)

dataStmts := `
Expand Down

0 comments on commit 0422254

Please sign in to comment.