44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
use App\Models\Account;
|
|
use App\Models\Contact;
|
|
use App\Models\PetCategory;
|
|
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('pet_categories', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignIdFor(Account::class)->constrained()->cascadeOnDelete();
|
|
$table->string('name')->nullable();
|
|
$table->string('name_translation_key')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
|
|
Schema::create('pets', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->uuid('uuid')->nullable();
|
|
$table->foreignIdFor(Contact::class)->constrained()->cascadeOnDelete();
|
|
$table->foreignIdFor(PetCategory::class)->constrained()->cascadeOnDelete();
|
|
$table->string('name')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('pets');
|
|
Schema::dropIfExists('pet_categories');
|
|
}
|
|
};
|