FEATURE: make pin expiration mandatory

This commit is contained in:
Régis Hanol
2015-07-29 16:34:21 +02:00
parent 9e2632badd
commit faf4f44776
18 changed files with 192 additions and 97 deletions

View File

@ -0,0 +1,5 @@
class AddPinnedUntilToTopics < ActiveRecord::Migration
def change
add_column :topics, :pinned_until, :datetime, null: true
end
end