forgeplus/db/migrate/20201004034434_add_recommen...

6 lines
146 B
Ruby
Raw Normal View History

2020-10-04 12:03:38 +08:00
class AddRecommendToProjects < ActiveRecord::Migration[5.2]
def change
add_column :projects, :recommend, :boolean, default: false
end
end