File: /home/armgroup/libs/database/migrations/2021_05_01_094432_create_addressables_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAddressablesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('addressables', function (Blueprint $table) {
$table->unsignedBigInteger('address_id');
$table->unsignedBigInteger('addressable_id');
$table->string('addressable_type');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('addressables');
}
}