S.Nishio
S.Nishio
Support https://dev.mysql.com/doc/refman/5.6/en/set.html
``` bin/convergence -c config.yml -i schema.rb --safe-migration ``` if --safe-migration option is enabled, convergence cannot execute drop table query.
``` $ bin/convergence -i test.rb -c config.yml --dump-rails-migration --filename testdump ``` output ``` #Filename: 20171225000000_testdump.rb class TestDump < ActiveRecord::Migration[5.0] def change create_table :test do |t| t.string :something, null: false, limit:...
I would like to use convergence for my rails application running on postgreSQL.
Convergence is not currently support SQLite. The current implementation is depend on mysql, so i need a big fix to do it.