class CreateBaseTiposDeTransferencia < ActiveRecord::Migration[4.2]
	def change
		create_table :base_tipos_de_transferencia do |t|
			t.integer :numero
			t.string :descricao

			t.timestamps null: false
		end
	end
end
