clarion/db/migrate/20150719114546_remove_slug_from_conferences.rb

6 lines
119 B
Ruby
Raw Normal View History

class RemoveSlugFromConferences < ActiveRecord::Migration
def change
remove_column :conferences, :slug
end
end