Dmitri Sotnikov

Results 647 comments of Dmitri Sotnikov

It looks like ANSI/ISO type should be [double precision](http://www.moreprocess.com/database/sql/data-types-in-sql-defined-by-ansiiso). The [PlatformUtils](http://db.apache.org/ddlutils/api/org/apache/ddlutils/PlatformUtils.html) class from the Apache[DdlUtils](https://db.apache.org/ddlutils/) library could be used to infer the database type otherwise.

Did you try creating the migrations table by hand? ```clojure (sql/create-table-ddl :schema_migrations [[:id "NUMBER" "UNIQUE" "NOT NULL"] [:applied "TIMESTAMP" "" ""] [:description "VARCHAR(1024)" "" ""]]) ```

I think the issue here is that h2 has quirky support for transactions. So, not sure how much can be done to address that within migratus.

It should just be the entry in the migration table that controls whether a particular migration will be run or not.

Yeah, I'm definitely open to adding this as an option. I won't have time to look at it in the near future though, but I'd be glad to help guide...

I've updated the check for parsing the migration file names with a better heuristic to see whether the file was parsed correctly. Just pushed out `1.2.6` with the update that...

Hi, I agree the feature would be useful. One thing to consider here is that there is some variation in how the connection string can be specified for different databases....

Yeah, I think that would be reasonable. If you want to make a PR with the feature and maybe add a test, I'll push out a release.

Fantastic, just pushed `1.3.5` to Clojars with the new functionality. :tada:

And new release 1.12.59 is up on Clojars with the feature.