mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 05:06:51 +08:00
8 lines
247 B
Ruby
8 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
|