Skip to content

Instantly share code, notes, and snippets.

@vivahiraj
Created May 6, 2019 13:46
Show Gist options
  • Save vivahiraj/dda844e1f6c6ad3c211d11c1fea1ef22 to your computer and use it in GitHub Desktop.
Save vivahiraj/dda844e1f6c6ad3c211d11c1fea1ef22 to your computer and use it in GitHub Desktop.
railsでgenerateするときにmigrationを生成させないようにするとか
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