Repository URL to install this package:
Version:
0.4.2 ▾
|
class AddSlugToEvents < ActiveRecord::Migration
def up
add_column :events, :slug, :string
end
def down
remove_column :events, :slug
end
end