Initial release of Discourse

This commit is contained in:
Robin Ward
2013-02-05 14:16:51 -05:00
commit 21b5628528
2932 changed files with 143949 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
class FixPostTimings < ActiveRecord::Migration
def up
remove_index :post_timings, [:thread_id, :post_number]
remove_index :post_timings, [:thread_id, :post_number, :user_id]
rename_column :post_timings, :thread_id, :forum_thread_id
add_index :post_timings, [:forum_thread_id, :post_number], name: 'post_timings_summary'
add_index :post_timings, [:forum_thread_id, :post_number, :user_id], unique: true, name: 'post_timings_unique'
end
def down
rename_column :post_timings, :forum_thread_id, :thread_id
end
end