Sha256: cdaaa242a3c5a41772f98d9b8a3a498ac1637a18cc9c954ce1488c976b970c2d
Contents?: true
Size: 353 Bytes
Versions: 149
Compression:
Stored size: 353 Bytes
Contents
class CreateInventories < ActiveRecord::Migration def self.up create_table :inventories do |t| t.integer :item_id t.integer :inventory_file_id t.text :note t.timestamps end add_index :inventories, :item_id add_index :inventories, :inventory_file_id end def self.down drop_table :inventories end end
Version data entries
149 entries across 148 versions & 5 rubygems