Closed shandak closed 1 year ago
PR #13 fixes issue related to mysql. I will release new version after adding test to CI. You can use latest master version. Beware, latest master have changed trait name.
Is there a way to execute multiple queries per one migration? Looks like connection: &mut MySqlConnection
is once borrowing per the first query and can't be used anymore...
You can use .execute(&mut *connection)
instead of .execute(connection)
You can use
.execute(&mut *connection)
instead of.execute(connection)
This is what I wanted, many thanks!!!
version 0.6.0 released with all fixes earlier master branch had some issue
$1
or$2
do not support in mysql https://github.com/iamsauravsharma/sqlx_migrator/blob/master/src/migrator.rs#L676 instead should be used?