Add comment handling and related tests for migration functionality (#344)

This commit is contained in:
Fuad Hasan
2025-09-13 20:04:04 +06:00
committed by GitHub
parent 25cee51cac
commit 101d498909
3 changed files with 110 additions and 1 deletions

View File

@@ -3,3 +3,7 @@ package migrate
func IsCallback(stmt string) (name string) {
return isCallback(stmt)
}
func IsComment(stmt string) bool {
return isComment(stmt)
}