1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20120423151548_remove_last_post_id.rb

10 lines
206 B
Ruby

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
end
end