todo/database/migrations/2024_04_27_121448_create_no...

26 lines
648 B
PHP

<?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
{
Schema::create('notes', function (Blueprint $table) {
$table->id();
$table->string('name', 255);
$table->text('description')->nullable();
$table->string('file', 255)->nullable();
$table->foreignId('task_id')->constrained('tasks');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('notes');
}
};