Files
animethemes-server/database/migrations/2020_05_05_044925_create_anime_table.php
T

31 lines
849 B
PHP

<?php
declare(strict_types=1);
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(): void
{
if (! Schema::hasTable('anime')) {
Schema::create('anime', function (Blueprint $table) {
$table->id('anime_id');
$table->timestamps(6);
$table->softDeletes(precision: 6);
$table->string('slug');
$table->string('name');
$table->integer('year')->nullable();
$table->integer('season')->nullable();
$table->integer('format')->nullable();
$table->text('synopsis')->nullable();
});
}
}
};