Sha256: ce865b2f5b62313e56ce9ce9c6a3e520133e32e2858ce6599a6ac99323efbe13
Contents?: true
Size: 374 Bytes
Versions: 97
Compression:
Stored size: 374 Bytes
Contents
class ExtendPagePartContentLimit < ActiveRecord::Migration[5.2] def self.up if ActiveRecord::Base.connection.adapter_name =~ /m[sy]sql/i change_column :page_parts, :content, :text, :limit => 1048575 end end def self.down if ActiveRecord::Base.connection.adapter_name =~ /m[sy]sql/i change_column :page_parts, :content, :text end end end
Version data entries
97 entries across 97 versions & 1 rubygems