canvas-lms/db/migrate/20150213193129_drop_batch_i...

12 lines
204 B
Ruby

class DropBatchIdFromSisBatches < ActiveRecord::Migration
tag :postdeploy
def up
remove_column :sis_batches, :batch_id
end
def down
add_column :sis_batches, :batch_id, :string
end
end