canvas-lms/db/migrate/20110520164623_add_sis_batc...

12 lines
319 B
Ruby

class AddSisBatchBatchMode < ActiveRecord::Migration
def self.up
add_column :sis_batches, :batch_mode, :boolean
add_column :sis_batches, :batch_mode_term_id, :integer, :limit => 8
end
def self.down
remove_column :sis_batches, :batch_mode
remove_column :sis_batches, :batch_mode_term_id
end
end