Created
May 6, 2019 13:46
-
-
Save vivahiraj/dda844e1f6c6ad3c211d11c1fea1ef22 to your computer and use it in GitHub Desktop.
railsでgenerateするときにmigrationを生成させないようにするとか
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Myapp::Application.config.generators do |g| | |
g.stylesheets false | |
g.javascripts false | |
g.helper false | |
g.template_engine false | |
g.orm :active_record, migration: false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment