mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateSharesTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('shares', function (Blueprint $table) {
|
|
$table->uuid('id')->primary();
|
|
$table->uuid('user_id');
|
|
$table->uuid('item_id');
|
|
$table->string('token', 16)->unique()->index();
|
|
$table->enum('type', ['file', 'folder']);
|
|
$table->enum('permission', ['visitor', 'editor'])->nullable();
|
|
$table->boolean('is_protected')->default(0);
|
|
$table->string('password')->nullable();
|
|
$table->integer('expire_in')->nullable();
|
|
$table->timestamps();
|
|
$table->charset = 'utf8mb4';
|
|
$table->collation = 'utf8mb4_unicode_ci';
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('shares');
|
|
}
|
|
}
|