Просмотр файла database/upgrades/2025_08_12_012820_add_mime_type_to_files.php

Размер файла: 528B
<?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::table('files', function (Blueprint $table) {
            $table->string('mime_type', 100)->nullable()->after('size');
        });
    }

    public function down(): void
    {
        Schema::table('files', function (Blueprint $table) {
            $table->dropColumn('mime_type');
        });
    }
};