46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateFilesTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('files', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
|
|
$table->unsignedInteger('user_id')->nullable()->index();
|
|
$table->string('identifier')->index();
|
|
$table->string('filename');
|
|
$table->string('dir');
|
|
$table->string('original_name');
|
|
$table->string('ext');
|
|
$table->string('mine');
|
|
$table->unsignedInteger('size');
|
|
$table->timestamps();
|
|
|
|
$table->foreign('user_id')
|
|
->references('id')
|
|
->on('users')
|
|
->onDelete('cascade');
|
|
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('files');
|
|
}
|
|
}
|