Sha256: 69db8710365ddc8f7148c7fbef6a37f1a1ed0282e336f1cbe441855f8f2ac488

Contents?: true

Size: 299 Bytes

Versions: 1

Compression:

Stored size: 299 Bytes

Contents

class CreateInventoryEntryLocations < ActiveRecord::Migration
  def change
    create_table :inventory_entry_locations do |t|

      t.references  :inventory_entry
      t.references  :fixed_asset
      t.datetime    :valid_from
      t.datetime    :valid_thru

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
erp_inventory-4.0.0 db/migrate/20130925202059_create_inventory_entry_locations.rb