no comment

This commit is contained in:
2021-01-11 01:16:57 +09:00
parent 451119c743
commit ee8ab5c2f3

View File

@@ -1,32 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ModifyAllianceMoonRentalInvoicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('alliance_moon_rental_invoices', function (Blueprint $table) {
$table->bigInteger('invoice_id')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('alliance_moon_rental_invoices', function (Blueprint $table) {
$table->dropColumn('invoice_id');
});
}
}