Cleaned up TopicUserSpec, introduces clearing of pinned topics

This commit is contained in:
Robin Ward
2013-03-06 15:17:07 -05:00
parent 3af2ab9022
commit f8d8272406
27 changed files with 2663 additions and 342 deletions

View File

@@ -0,0 +1,9 @@
class AddClearedPinnedToTopicUsers < ActiveRecord::Migration
def change
add_column :topic_users, :cleared_pinned_at, :datetime, null: true
add_column :topics, :pinned_at, :datetime, null: true
execute "UPDATE topics SET pinned_at = created_at WHERE pinned"
remove_column :topics, :pinned
end
end

File diff suppressed because it is too large Load Diff