change settings.value to text

refs OPS-92

test plan: n/a

Change-Id: Iae1fa2eb2194c0d9ea5c9a1e29a6ffabb0e90a92
Reviewed-on: https://gerrit.instructure.com/34611
Tested-by: Jenkins <jenkins@instructure.com>
Reviewed-by: Nick Cloward <ncloward@instructure.com>
Reviewed-by: Cody Cutrer <cody@instructure.com>
Product-Review: Brian Palmer <brianp@instructure.com>
QA-Review: Brian Palmer <brianp@instructure.com>
This commit is contained in:
Brian Palmer 2014-05-09 10:19:21 -06:00
parent 05d4cf6620
commit 02dae859e0
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
class ChangeSettingsValueToText < ActiveRecord::Migration
tag :predeploy
def self.up
change_column :settings, :value, :text
end
def self.down
change_column :settings, :value, :string
end
end