mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:48:23 +00:00
9 lines
247 B
Ruby
9 lines
247 B
Ruby
# 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
|