Sha256: cb2d731a03a17788667928d170ce79622978c852feb18fdd371a1ba83f9c1318
Contents?: true
Size: 666 Bytes
Versions: 44
Compression:
Stored size: 666 Bytes
Contents
class CreateManifestationCheckoutStatTransitions < ActiveRecord::Migration def change create_table :manifestation_checkout_stat_transitions do |t| t.string :to_state t.text :metadata, default: "{}" 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
44 entries across 44 versions & 11 rubygems