27 lines
711 B
PHP
27 lines
711 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('departments', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name', 255);
|
|
$table->text('description')->nullable();
|
|
$table->smallInteger('position');
|
|
$table->string('slug', 255)->unique();
|
|
$table->foreignId('faculty_id')->constrained('faculties');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('departments');
|
|
}
|
|
};
|