This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20130615073305_remove_topic_id_from_uploads.rb
2013-06-17 02:49:33 +02:00

10 lines
204 B
Ruby

class RemoveTopicIdFromUploads < ActiveRecord::Migration
def up
remove_column :uploads, :topic_id
end
def down
add_column :uploads, :topic_id, :interger, null: false, default: -1
end
end