Sha256: ec5410127feafe90cf0a54f8fda89b7612fb97da389e9c4a2cf9f28065535750
Contents?: true
Size: 339 Bytes
Versions: 3
Compression:
Stored size: 339 Bytes
Contents
class CreateInventoryFiles < ActiveRecord::Migration[4.2] def self.up create_table :inventory_files do |t| t.string :filename t.string :content_type t.integer :size t.references :user, index: true t.text :note t.timestamps end end def self.down drop_table :inventory_files end end
Version data entries
3 entries across 3 versions & 1 rubygems