class CreateTopologiesTable < ActiveRecord::Migration

  def self.up
    create_table :topology_files do |t|
      t.string :doc_file_name, :doc_content_type, :login_type, :login_name
      t.integer :doc_file_size, :report_id, :employee_id, :login_id
      t.datetime :created_at
    end
  end 

  def self.down
    drop_table :topology_files
  end

end
