id(); $table->unsignedBigInteger('amount'); $table->unsignedBigInteger('customer_id'); $table->unsignedBigInteger('invoice_id'); $table->text('data')->nullable()->default(null); $table->softDeletes(); $table->timestamps(); $table->foreign('invoice_id')->references('id') ->on('invoices')->onDelete('cascade'); $table->foreign('customer_id')->references('id') ->on('customers')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('credits'); } };