mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 10:14:34 +08:00
7 lines
195 B
Ruby
7 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeThemeFieldCompilerVersion < ActiveRecord::Migration[5.2]
|
|
def change
|
|
change_column(:theme_fields, :compiler_version, :string, limit: 50)
|
|
end
|
|
end
|