class CreateLicitacaoAtasDeRegistroDePrecos < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_atas_de_registro_de_precos do |t|
      t.integer :projeto_id
      t.string :numero, limit: 15
      t.text :texto_da_ata
      t.integer :modelo_do_documento_id

      t.timestamps null: false
    end
  end
end
