2013-02-05 13:16:51 -06:00
|
|
|
class RemoveLastPostId < ActiveRecord::Migration
|
|
|
|
def up
|
|
|
|
remove_column :forum_threads, :last_post_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2013-03-23 10:02:59 -05:00
|
|
|
add_column :forum_threads, :last_post_id, :integer, default: 0
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|