mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:54:59 +08:00
81dcadf788
This is an improved implementation for bc8b7b13
8 lines
195 B
Ruby
8 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
|