Skip to content

Commit

Permalink
Merge pull request #73 from d-m-u/change_description_to_text
Browse files Browse the repository at this point in the history
Change dialog field description to text field to accomodate larger sizes
  • Loading branch information
Fryguy authored Oct 2, 2017
2 parents af0e49a + 3f0449b commit cac7eb0
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class ChangeDialogFieldDescriptionFromStringToText < ActiveRecord::Migration[5.0]
def up
change_column :dialog_fields, :description, :text
end

def down
change_column :dialog_fields, :description, :string
end
end

0 comments on commit cac7eb0

Please sign in to comment.