This patch adds a new migration event type CallComment that it triggered by adding `-- CALL <name>;` comment in a CQL file. Fixes #101
6 lines
89 B
Go
6 lines
89 B
Go
package migrate
|
|
|
|
func IsCallback(stmt string) (name string) {
|
|
return isCallback(stmt)
|
|
}
|