discourse/db/migrate/20120423151548_remove_last_...

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

12 lines
237 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RemoveLastPostId < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def up
remove_column :forum_threads, :last_post_id
end
def down
add_column :forum_threads, :last_post_id, :integer, default: 0
2013-02-05 14:16:51 -05:00
end
end