File size: 665B
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
if (! Schema::hasTable('notebooks')) {
Schema::create('notebooks', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->text('text');
$table->integer('created_at');
$table->unique('user_id');
});
}
}
public function down(): void
{
Schema::dropIfExists('notebooks');
}
};