mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:09:33 +08:00
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
|