zachinglis/crummy

View on GitHub
example/db/migrate/20111104103738_create_categories.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateCategories < ActiveRecord::Migration
  def change
    create_table :categories do |t|
      t.string :title
      t.string :slug
      
      t.string :category_id # Can have a category as a parent
      
      t.timestamps
    end
  end
end