# frozen_string_literal: true
class RemoveLastPostId < ActiveRecord::Migration[4.2]
def up
remove_column :forum_threads, :last_post_id
end
def down
add_column :forum_threads, :last_post_id, :integer, default: 0