Sha256: 9d81b873e458a51711347b14a7422834476bc1f69c4e2407c34123148a16f6a7
Contents?: true
Size: 418 Bytes
Versions: 3
Compression:
Stored size: 418 Bytes
Contents
class CreateOrderListTransitions < ActiveRecord::Migration[4.2] def change create_table :order_list_transitions do |t| t.string :to_state t.text :metadata, default: "{}" t.integer :sort_key t.integer :order_list_id t.timestamps end add_index :order_list_transitions, :order_list_id add_index :order_list_transitions, [:sort_key, :order_list_id], unique: true end end
Version data entries
3 entries across 3 versions & 1 rubygems