for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateContactGroupTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('contact_group', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('contact_id');
$table->unsignedBigInteger('group_id');
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('contact_group');