discourse/db/migrate/20240906233304_remove_limit...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
247 B
Ruby
Raw Normal View History

# 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