Sha256: 3d300aff6024065a0725b50f39d5a2be9ed474d5514a3e65efac8112d9d3c68b
Contents?: true
Size: 293 Bytes
Versions: 412
Compression:
Stored size: 293 Bytes
Contents
class CreateOwns < ActiveRecord::Migration 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
412 entries across 404 versions & 22 rubygems