Sindbad~EG File Manager

Current Path : /proc/self/cwd/common/Database/migrations/
Upload File :
Current File : //proc/self/cwd/common/Database/migrations/2016_05_26_170044_create_uploads_table.php

<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUploadsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('uploads', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name')->index();
            $table->string('file_name', 40)->unique();
            $table->string('file_size');
            $table->string('mime');
            $table->string('extension');
            $table->string('user_id')->index();
            $table->string('url')->nullable();
            $table->string('thumbnail_url')->nullable();
            $table->timestamps();

            $table->collation = config('database.connections.mysql.collation');
            $table->charset = config('database.connections.mysql.charset');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('uploads');
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists