socialforge/db/migrate/20160727065357_add_column_t...

6 lines
144 B
Ruby
Raw Normal View History

2016-07-27 16:43:27 +08:00
class AddColumnToMemberRole < ActiveRecord::Migration
def change
add_column :member_roles, :is_current, :integer, :default => 1
2016-07-27 16:43:27 +08:00
end
end