50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
<?php
|
|
|
|
use App\Models\Address;
|
|
use App\Models\AddressType;
|
|
use App\Models\Contact;
|
|
use App\Models\Vault;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('addresses', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignIdFor(Vault::class)->constrained()->cascadeOnDelete();
|
|
$table->foreignIdFor(AddressType::class)->nullable()->constrained()->nullOnDelete();
|
|
$table->string('line_1')->nullable();
|
|
$table->string('line_2')->nullable();
|
|
$table->string('city')->nullable();
|
|
$table->string('province')->nullable();
|
|
$table->string('postal_code')->nullable();
|
|
$table->string('country')->nullable();
|
|
$table->double('latitude')->nullable();
|
|
$table->double('longitude')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
|
|
Schema::create('contact_address', function (Blueprint $table) {
|
|
$table->foreignIdFor(Contact::class)->constrained()->cascadeOnDelete();
|
|
$table->foreignIdFor(Address::class)->constrained()->cascadeOnDelete();
|
|
$table->boolean('is_past_address')->default(false);
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('contact_address');
|
|
Schema::dropIfExists('addresses');
|
|
}
|
|
};
|