mirror of
https://github.com/discourse/discourse.git
synced 2025-09-12 21:10:47 +08:00
9 lines
206 B
Ruby
9 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
|