hey, I had a question, does migratus have a limitation where it can only run ddl or dml queries if they are in one file? I tried to create a table and then insert data into it in one migration file, but only the table got created. if I remove the query to create the table, then the data gets inserted. I am using luminus-migrations "0.7.5"
Did you use --;; to separate statements? https://github.com/yogthos/migratus#multiple-statements
Oh I see. That was the problem, not all my statements had --;; as a separator. Thanks