class CreateObraSubcomponentesDaOperacaoDeCredito < ActiveRecord::Migration[5.2]
	def change
		create_table :obra_subcomponentes_da_operacao_de_credito do |t|
			t.integer "componente_da_operacao_de_credito_id"
			t.integer "codigo"
			t.string "descricao"
			t.datetime "created_at", null: false
			t.datetime "updated_at", null: false
		end
	end
end
