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
|