2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20120924182031_add_vote_count_to_posts.rb

6 lines
228 B
Ruby

class AddVoteCountToPosts < ActiveRecord::Migration[4.2]
def change
add_column :forum_threads, :vote_count, :integer, default: 0, null: false
add_column :posts, :vote_count, :integer, default: 0, null: false
end
end