Sha256: 6e6d529e70c483e65bb76f11c5fdd9675b05897368ec5bf42e57fb9394a2b7d5

Contents?: true

Size: 668 Bytes

Versions: 2

Compression:

Stored size: 668 Bytes

Contents

class CreateCheckouts < ActiveRecord::Migration[5.2]
  def self.up
    create_table :checkouts do |t|
      t.references :user, index: true, foreign_key: true
      t.references :item, index: true, foreign_key: true, null: false
      t.references :checkin, index: true, foreign_key: true
      t.references :librarian, index: true
      t.references :basket, index: true
      t.datetime :due_date
      t.integer :checkout_renewal_count, default: 0, null: false
      t.integer :lock_version, default: 0, null: false
      t.timestamps
    end
    add_index :checkouts, [:item_id, :basket_id], unique: true
  end

  def self.down
    drop_table :checkouts
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
enju_inventory-0.4.0.rc.1 spec/dummy/db/migrate/033_create_checkouts.rb
enju_circulation-0.4.0.rc.1 db/migrate/033_create_checkouts.rb