Iwao AVE!

Results 282 comments of Iwao AVE!

Hi @tohagan-tmr , It makes sense, but I cannot think of a solution that works with all (or most major) databases and does not break backward compatibility. As a workaround,...

> Might be something to keep mind if you're ever contemplating a future major version. Will do! Thank you fro the valuable feedback! Note to self: Changing the column data...

Hello @wonekid , Please create a small project that reproduces the problem and share it on your GitHub repo. Here are some project templates: https://github.com/harawata/mybatis-issues

Hi guys, Sorry for a late reply! I too am using the Maven plugin on Jenkins. If you need any help with setting up Maven or Gradle plugin, we might...

Hi @fhussainVeritix , Check out the maven plugin. http://www.mybatis.org/migrations-maven-plugin/

Interesting idea. I didn't think of a use case that someone performs various commands other than 'up' once the product is released as a JAR file (the JAR may not...

Hello @jeffreyporter , To get picked up by the Spring scanner, your annotation needs `@Retention(RetentionPolicy.RUNTIME)`. ```java package com.jeff.porter.annotation; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import org.springframework.stereotype.Component; @Retention(RetentionPolicy.RUNTIME) @Component public @interface MybatisMapper {...

Hello @chiruyarabolu , I don't understand what you mean. Please try explaining it using concrete examples.

Not really. That is why you should not put multiple statements in a single script if one or some of them could fail.

If a custom migration loader is built-in, it'll be picked up by SPI, I think. I haven't tested it, but if it's published as a separate module on Maven Central...