FEATURE: per-category default topic list sort order

This commit is contained in:
Neil Lalonde
2016-11-01 12:18:31 -04:00
parent 90ee4e743b
commit 9ef1688a76
10 changed files with 86 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
class AddSortFieldsToCategories < ActiveRecord::Migration
def change
add_column :categories, :sort_order, :string
add_column :categories, :sort_ascending, :boolean
end
end