todo/database/migrations/2024_04_27_115329_create_pr...

31 lines
691 B
PHP
Raw Permalink Normal View History

2024-04-27 15:14:20 +03:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
2024-04-27 15:14:20 +03:00
public function up(): void
{
Schema::create('projects', function (Blueprint $table) {
2024-04-27 15:14:20 +03:00
$table->id();
2024-04-27 16:32:03 +03:00
$table->string('name', 255);
$table->text('description');
$table->foreignId('department_id')->constrained('departments');
2024-04-27 15:14:20 +03:00
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
2024-04-27 15:14:20 +03:00
public function down(): void
{
Schema::dropIfExists('projects');
2024-04-27 15:14:20 +03:00
}
};