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