2024-01-19 10:48:00 +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
|
|
|
|
{
|
2024-02-14 09:44:53 +03:00
|
|
|
Schema::create('documents', function (Blueprint $table) {
|
2024-01-19 10:48:00 +03:00
|
|
|
$table->id();
|
2024-03-12 09:32:57 +03:00
|
|
|
$table->string('name', 255)->unique();
|
2024-02-07 16:33:34 +03:00
|
|
|
$table->string('file_name')->nullable();
|
2024-02-14 09:44:53 +03:00
|
|
|
$table->text('description')->nullable();
|
2024-03-12 09:32:57 +03:00
|
|
|
$table->string('url', 255);
|
|
|
|
$table->smallInteger('position');
|
2024-02-14 09:44:53 +03:00
|
|
|
$table->foreignId('admission_id')->constrained('admissions');
|
2024-01-19 10:48:00 +03:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down(): void
|
|
|
|
{
|
2024-02-14 09:44:53 +03:00
|
|
|
Schema::dropIfExists('documents');
|
2024-01-19 10:48:00 +03:00
|
|
|
}
|
|
|
|
};
|