diaspora/db/migrate/20110127000931_drop_extra_columns.rb

10 lines
218 B
Ruby

class DropExtraColumns < ActiveRecord::Migration
def self.up
remove_column :services, :provider
remove_column :statistics, :type
end
def self.down
raise ActiveRecord::IrreversibleMigration
end
end