Sha256: 1e06a7beae764f6276c6022c61fda102544138125883105846524aec44e1ee3e
Contents?: true
Size: 338 Bytes
Versions: 1
Compression:
Stored size: 338 Bytes
Contents
class CreateCheckins < ActiveRecord::Migration[5.2] def self.up create_table :checkins do |t| t.references :item, index: true, foreign_key: true, null: false t.references :librarian, index: true t.references :basket, index: true t.timestamps end end def self.down drop_table :checkins end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
enju_circulation-0.4.0.rc.1 | db/migrate/032_create_checkins.rb |