We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96d2d7f commit 2195360Copy full SHA for 2195360
internal/dialects/spanner.go
@@ -40,7 +40,7 @@ func (s *spanner) GetMigrationByVersion(tableName string) string {
40
}
41
42
func (s *spanner) ListMigrations(tableName string) string {
43
- q := `SELECT version_id, is_applied from %s ORDER BY version_id DESC`
+ q := `SELECT tstamp, version_id, is_applied from %s ORDER BY version_id DESC`
44
return fmt.Sprintf(q, tableName)
45
46
0 commit comments