Why: * We're still using id's on routes and other parts of the app, using slugs are more friendly and nice How: * Just a migration with a slug column with string type
8 lines
218 B
Ruby
8 lines
218 B
Ruby
class AddSlugsToBudgetHeadingGroup < ActiveRecord::Migration
|
|
def change
|
|
add_column :budgets, :slug, :string
|
|
add_column :budget_groups, :slug, :string
|
|
add_column :budget_headings, :slug, :string
|
|
end
|
|
end
|