mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
8 lines
247 B
Ruby
Vendored
8 lines
247 B
Ruby
Vendored
# 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
|