class CreateObraOrdensDeServico < ActiveRecord::Migration[4.2]
	def change
		create_table :obra_ordens_de_servico do |t|
			t.date :data_de_inicio
			t.date :data_prevista_de_termino
			t.string :codigo, limit: 12
			t.integer :obra_id
			t.integer :contrato_id
			t.integer :empenho_id
			t.text :historico

			t.timestamps null: false
		end
	end
end
