2024-02-07 16:30:49 +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('faculties', function (Blueprint $table) {
|
|
|
|
$table->id();
|
|
|
|
$table->string('name');
|
2024-02-14 16:19:31 +03:00
|
|
|
$table->text('description')->nullable();
|
2024-02-07 16:30:49 +03:00
|
|
|
$table->integer('position');
|
2024-02-12 12:15:46 +03:00
|
|
|
$table->string('slug');
|
2024-02-07 16:30:49 +03:00
|
|
|
$table->foreignId('educational_institution_id')->constrained('educational_institutions');
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down(): void
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('faculties');
|
|
|
|
}
|
|
|
|
};
|