Sha256: 2229ca9b1c09325dcb3e52244615a4d97d9bc5e633d9900468c620851180a98b
Contents?: true
Size: 238 Bytes
Versions: 13
Compression:
Stored size: 238 Bytes
Contents
# frozen_string_literal: true class ChangeFieldsCollectionToText < ActiveRecord::Migration[4.2] def self.up change_column :fields, :collection, :text end def self.down change_column :fields, :collection, :string end end
Version data entries
13 entries across 13 versions & 1 rubygems