change auth_filter from string to text

fixes CNVS-21313

test plan
 - db:migrate should pass

Change-Id: I0f61ad9d71a6d3fc4c5d31ecffa685bb7f699000
Reviewed-on: https://gerrit.instructure.com/64008
Tested-by: Jenkins
Product-Review: Rob Orton <rob@instructure.com>
QA-Review: Rob Orton <rob@instructure.com>
Reviewed-by: Jacob Fugal <jacob@instructure.com>
This commit is contained in:
Rob Orton 2015-09-25 00:57:36 -06:00
parent 075c90cbad
commit 1400746cd7
2 changed files with 12 additions and 0 deletions

View File

@ -21,6 +21,7 @@ require 'net_ldap_extensions'
class AccountAuthorizationConfig < ActiveRecord::Base class AccountAuthorizationConfig < ActiveRecord::Base
include Workflow include Workflow
validates :auth_filter, length: {maximum: maximum_text_length, allow_nil: true, allow_blank: true}
strong_params strong_params

View File

@ -0,0 +1,11 @@
class ChangeAuthFilterToText < ActiveRecord::Migration
tag :postdeploy
def self.up
change_column :account_authorization_configs, :auth_filter, :text
end
def self.down
change_column :account_authorization_configs, :auth_filter, :string
end
end