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

Размер файла: 510B
<?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->renameColumn('hash', 'path');
        });
    }

    public function down(): void
    {
        Schema::table('files', function (Blueprint $table) {
            $table->renameColumn('path', 'hash');
        });
    }
};