Skip to content

Commit 2195360

Browse files
committed
Update to include spanner.
1 parent 96d2d7f commit 2195360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/dialects/spanner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func (s *spanner) GetMigrationByVersion(tableName string) string {
4040
}
4141

4242
func (s *spanner) ListMigrations(tableName string) string {
43-
q := `SELECT version_id, is_applied from %s ORDER BY version_id DESC`
43+
q := `SELECT tstamp, version_id, is_applied from %s ORDER BY version_id DESC`
4444
return fmt.Sprintf(q, tableName)
4545
}
4646

0 commit comments

Comments
 (0)