Add unstarred_at column to topic_users so we can permanently track when topics are starred

This commit is contained in:
Neil Lalonde
2013-04-28 16:58:14 -04:00
parent 60208e3ded
commit dc07563c0d
3 changed files with 40 additions and 22 deletions

View File

@@ -0,0 +1,5 @@
class AddUnstarredAtToTopicUsers < ActiveRecord::Migration
def change
add_column :topic_users, :unstarred_at, :datetime
end
end