discourse/db/migrate/20190603134013_change_theme_field_compiler_version.rb
David Taylor 81dcadf788
DEV: Stop compiling themes during DB migration. Recompile on cdn change. (#7676)
This is an improved implementation for bc8b7b13
2019-06-03 16:38:02 +01:00

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