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

28 lines
737 B
PHP
Raw Normal View History

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
{
Schema::create('documents', function (Blueprint $table) {
2024-01-19 10:48:00 +03:00
$table->id();
$table->string('name');
$table->string('file_name')->nullable();
$table->text('description')->nullable();
2024-01-19 10:48:00 +03:00
$table->string('url');
2024-01-23 17:58:48 +03:00
$table->integer('position');
$table->foreignId('admission_id')->constrained('admissions');
2024-01-19 10:48:00 +03:00
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('documents');
2024-01-19 10:48:00 +03:00
}
};