canvas-lms/db/migrate/20110203205300_add_attachme...

10 lines
257 B
Ruby

class AddAttachmentToContentMigration < ActiveRecord::Migration
def self.up
add_column :content_migrations, :exported_attachment_id, :integer, :limit => 8
end
def self.down
remove_column :content_migrations, :exported_attachment_id
end
end