class CreateBaseBancos < ActiveRecord::Migration[4.2]
	def change
		create_table :base_bancos do |t|
			t.integer :numero_do_banco
			t.string :cnpj, limit: 14
			t.string :nome, limit: 80

			t.timestamps null: false
		end
	end
end
