discourse/db/migrate/20131210163702_add_word_cou...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
313 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddWordCountToPosts < ActiveRecord::Migration[4.2]
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