class CreateContabilidadePagamentos < ActiveRecord::Migration[4.2]
	def change
		create_table :contabilidade_pagamentos do |t|
			t.integer :liquidacao_id
			t.boolean :estornado
			t.string :numero, limit: 8
			t.date :data
			t.decimal :valor, precision: 12, scale: 2

			t.timestamps null: false
		end
	end
end
