applicant-site/database/migrations/2024_02_08_074258_create_de...

27 lines
721 B
PHP
Raw Normal View History

2024-02-08 15:59:44 +03:00
<?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('departments', function (Blueprint $table) {
$table->id();
2024-03-12 09:32:57 +03:00
$table->string('name', 255)->unique();
2024-02-14 16:19:31 +03:00
$table->text('description')->nullable();
2024-03-12 09:32:57 +03:00
$table->smallInteger('position');
$table->string('slug', 255)->unique();
2024-02-08 15:59:44 +03:00
$table->foreignId('faculty_id')->constrained('faculties');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('departments');
}
};