FEATURE: suppress categories from the homepage

This commit is contained in:
Régis Hanol
2015-09-02 20:25:18 +02:00
parent a76d1079b2
commit a501947d67
12 changed files with 116 additions and 135 deletions
@@ -0,0 +1,5 @@
class AddSuppressFromHomepageToCategory < ActiveRecord::Migration
def change
add_column :categories, :suppress_from_homepage, :boolean, default: false
end
end