Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 551 Bytes

generate-and-edit-rails-migration.md

File metadata and controls

15 lines (11 loc) · 551 Bytes

Generate and Edit Rails Migration

Creating a new Rails migration has always involved two distinct steps for me. The first is to run rails g migration CreateSomeTable to create a migration file. The second is to copy and paste the migration's filename after vi to actually start editing it.

Rails.vim collapses these steps into one:

:Rgenerate migration CreateSomeTable

source