socialforge/db/migrate/20160223031843_remove_domai...

9 lines
141 B
Ruby

class RemoveDomainFromOrganizations < ActiveRecord::Migration
def up
remove_column :organizations, :domain
end
def down
end
end