Sha256: bd5d7e304f34b7e7e184aaca68e2e9fe078152d26dfda3fe3f5d173df936cddf

Contents?: true

Size: 223 Bytes

Versions: 1

Compression:

Stored size: 223 Bytes

Contents

class ChangeLocalizationLimit < ActiveRecord::Migration
  def up
    change_column :localizations, :value, :text, limit: 16_777_215
  end

  def down
    change_column :localizations, :value, :text, limit: 65_535
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pages_core-3.5.1 db/migrate/20160405202700_change_localization_limit.rb