Sha256: 58cd5b8835808c6aef108e09944974a6db905c5f41b9360f3c2bdb5e396f0bf5
Contents?: true
Size: 805 Bytes
Versions: 101
Compression:
Stored size: 805 Bytes
Contents
class CreateManifestationCheckoutStatTransitions < ActiveRecord::Migration[4.2] def change create_table :manifestation_checkout_stat_transitions do |t| t.string :to_state if ActiveRecord::Base.configurations[Rails.env]["adapter"].try(:match, /mysql/) t.text :metadata else t.text :metadata, default: "{}" end t.integer :sort_key t.integer :manifestation_checkout_stat_id t.timestamps end add_index :manifestation_checkout_stat_transitions, :manifestation_checkout_stat_id, name: "index_manifestation_checkout_stat_transitions_on_stat_id" add_index :manifestation_checkout_stat_transitions, [:sort_key, :manifestation_checkout_stat_id], unique: true, name: "index_manifestation_checkout_stat_transitions_on_transition" end end
Version data entries
101 entries across 101 versions & 10 rubygems