id(); $table->integer("customer_id")->nullable(); $table->string("belongs_type")->nullable(); $table->integer("belongs_id")->nullable(); $table->decimal("money")->nullable(); $table->decimal("balance")->nullable(); $table->string("remark")->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('balance'); } }