canvas-lms/db/migrate/20120814205244_change_auth_...

16 lines
500 B
Ruby
Raw Normal View History

class ChangeAuthOverTlsToString < ActiveRecord::Migration
tag :predeploy
def self.up
# existing Rails process will continue seeing it as boolean until they restart;
# this is fine, since they fetch as a string anyway
change_column :account_authorization_configs, :auth_over_tls, :string
end
def self.down
# technically it is reversible, but requires db specific syntax in postgres,
# and probably in mysql as well
raise ActiveRecord::IrreversibleMigration
end
end