14 lines
321 B
Ruby
14 lines
321 B
Ruby
class RemoveUnusedSisDataFields < ActiveRecord::Migration
|
|
tag :predeploy
|
|
|
|
def self.up
|
|
remove_column :pseudonyms, :sis_update_data
|
|
remove_column :enrollment_terms, :sis_data
|
|
end
|
|
|
|
def self.down
|
|
add_column :enrollment_terms, :sis_data, :text
|
|
add_column :pseudonyms, :sis_update_data, :text
|
|
end
|
|
end
|