rails-migrations

Installation
SKILL.md

ActiveRecord Migrations

Comprehensive guide to creating and managing database migrations in Rails.

Creating Migrations

Generator Commands

# Standalone migration
rails generate migration AddPartNumberToProducts part_number:string

# Create table
rails generate migration CreateProducts name:string price:decimal

# Add reference/foreign key
rails generate migration AddUserRefToProducts user:references

# Add index
Related skills

More from bastos/ruby-plugin-marketplace

Installs
1
GitHub Stars
2
First Seen
Apr 16, 2026