mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
a2ddb6cf2d
Now that we have custom SCSS files with arbitrary names, it's easy to exceed 30 characters
6 lines
149 B
Ruby
6 lines
149 B
Ruby
class IncreaseThemeFieldNameLength < ActiveRecord::Migration[5.2]
|
|
def change
|
|
change_column :theme_fields, :name, :string, limit: 255
|
|
end
|
|
end
|