Files
monica/database/migrations/2021_10_20_163535_create_emotions_table.php
T

37 lines
831 B
PHP

<?php
use App\Models\Account;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('emotions', function (Blueprint $table) {
$table->id();
$table->foreignIdFor(Account::class)->constrained()->cascadeOnDelete();
$table->string('name')->nullable();
$table->string('name_translation_key')->nullable();
$table->string('type');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('emotions');
}
};