2013-02-05 14:16:51 -05:00
|
|
|
class RemoveLastPostId < ActiveRecord::Migration
|
|
|
|
def up
|
|
|
|
remove_column :forum_threads, :last_post_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2013-03-23 20:32:59 +05:30
|
|
|
add_column :forum_threads, :last_post_id, :integer, default: 0
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|