FIX: Form template limit validation (#28791)

This commit is contained in:
Keegan George
2024-09-10 08:11:44 -07:00
committed by GitHub
parent 0a994a9221
commit f2059bf15f
4 changed files with 57 additions and 14 deletions

View File

@ -0,0 +1,8 @@
# frozen_string_literal: true
class RemoveLimitsFromFormTemplates < ActiveRecord::Migration[7.1]
def change
change_column :form_templates, :name, :string, limit: nil
change_column :form_templates, :template, :text, limit: nil
end
end