# Add Original File Name to Existing Tables

<mark style="color:red;">\[</mark><mark style="color:red;">**Deprecated**</mark><mark style="color:red;">]</mark> As the <mark style="color:red;">{$name}\_file\_original\_name</mark> column has been added to Larupload since <mark style="color:red;">v2.2.0</mark>, you may need to add this specific column to your <mark style="color:red;">**existing**</mark> tables.

```php
<?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('media', function (Blueprint $table) {
            $table->laruploadAddOriginalName('file');
        });
    }
};
```

{% hint style="info" %}
The first argument of `laruploadAddOriginalName` should match the first argument of `upload`.
{% endhint %}

{% hint style="info" %}
This column is only used when you've created table columns in HEAVY mode before.
{% endhint %}

{% hint style="danger" %}
This feature has been <mark style="color:red;">deprecated</mark> since version <mark style="color:red;">3.0.0</mark> and storing original file names is now enabled by default.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mostafaznv.gitbook.io/larupload/advanced-usage/migrations/add-original-file-name-to-existing-tables.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
