class CreateTcmArquivos < ActiveRecord::Migration[4.2]
  def change
    create_table :tcm_arquivos do |t|
      t.string :nome
      t.integer :lote_id
      t.text :conteudo

      t.timestamps null: false
    end
  end
end
