Skip to content

Instantly share code, notes, and snippets.

@woto
Last active October 21, 2019 10:36
Show Gist options
  • Save woto/cbff96237c9f95c42078995fe158733b to your computer and use it in GitHub Desktop.
Save woto/cbff96237c9f95c42078995fe158733b to your computer and use it in GitHub Desktop.
rails generate migration

You can create the table and index with the generator without changing the migration file

For a unique index

rails generate model CreateFoos bar:string:uniq

For a non-unique index

rails generate model CreateFoos bar:string:index
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment