id(); $table->foreignId('appraiser_id')->references('id')->on('users'); $table->bigInteger('order_id')->nullable(); $table->bigInteger("cost", false, true); $table->string('customer'); $table->string('expired'); $table->string('order_type')->nullable(); $table->string('status')->default(Debit::$NOPAID); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('debits'); } };