1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-05 18:59:22 +00:00
discourse/db/migrate/20131210163702_add_word_count_to_posts.rb

12 lines
277 B
Ruby

class AddWordCountToPosts < ActiveRecord::Migration
def up
add_column :posts, :word_count, :integer
add_column :topics, :word_count, :integer
end
def down
remove_column :posts, :word_count, :integer
remove_column :topics, :word_count, :integer
end
end