Sha256: 1adabfe54e5d424bd2f6894d0dcc6cda23457427d9239930b5e72417e6b6afd4
Contents?: true
Size: 286 Bytes
Versions: 9
Compression:
Stored size: 286 Bytes
Contents
class CreateAccepts < ActiveRecord::Migration[4.2] def change create_table :accepts do |t| t.integer :basket_id t.integer :item_id t.integer :librarian_id t.timestamps end add_index :accepts, :basket_id add_index :accepts, :item_id end end
Version data entries
9 entries across 9 versions & 3 rubygems