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