rosa-build/db/migrate/20120302102734_remove_name_...

11 lines
189 B
Ruby

# -*- encoding : utf-8 -*-
class RemoveNameFromGroups < ActiveRecord::Migration
def up
remove_column :groups, :name
end
def down
add_column :groups, :name, :string
end
end