socialforge/db/migrate/20160728075947_add_role_to_...

6 lines
144 B
Ruby
Raw Normal View History

2016-07-28 16:22:33 +08:00
class AddRoleToAppliedProject < ActiveRecord::Migration
def change
add_column :applied_projects, :role, :integer, :default => 0
end
end