Actually I didn't know that I could write my own ChangeLogParser. But I found another way:
- created an enum called something like Process with atributes "process" and "dont_process"
- when I create a new changeset, I use that flag as a context value
- then when I generate my sql file, I just process changesets with contexts that have "process" value
Is it a good approach?