Sha256: 1c469d19c941027141578e588b14ed8f931a602ac7e934845cf700209a5e78c0
Contents?: true
Size: 298 Bytes
Versions: 8
Compression:
Stored size: 298 Bytes
Contents
class CreateOwns < ActiveRecord::Migration[4.2] def change create_table :owns do |t| t.references :agent, :null => false t.references :item, :null => false t.integer :position t.timestamps end add_index :owns, :agent_id add_index :owns, :item_id end end
Version data entries
8 entries across 8 versions & 5 rubygems