class CreateContabilidadeTiposDeObra < ActiveRecord::Migration[4.2]
	def change
		create_table :contabilidade_tipos_de_obra do |t|
			t.integer :modulo_id
			t.string 	:modulo_type
			t.string 	:descricao
			t.string 	:sigla

			t.timestamps null: false
		end
	end
end
