canvas-lms/db/migrate/20130128220410_drop_account...

12 lines
246 B
Ruby

class DropAccountIdFromCourseSections < ActiveRecord::Migration
tag :postdeploy
def self.up
remove_column :course_sections, :account_id
end
def self.down
add_column :course_sections, :account_id, :integer, :limit => 8
end
end