Sha256: eda49db8fe082df0faf816edb2e61f8f210f5405626402c8a0a716e1681179ab
Contents?: true
Size: 326 Bytes
Versions: 11
Compression:
Stored size: 326 Bytes
Contents
class AddCirculationStatusIdToItem < ActiveRecord::Migration def change add_column :items, :circulation_status_id, :integer, default: 5, null: false add_column :items, :checkout_type_id, :integer, default: 1, null: false add_index :items, :circulation_status_id add_index :items, :checkout_type_id end end
Version data entries
11 entries across 11 versions & 3 rubygems