mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
added ShareTest test methods
This commit is contained in:
@@ -16,8 +16,8 @@ class CreateSharesTable extends Migration
|
||||
Schema::create('shares', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->uuid('user_id');
|
||||
$table->string('token', 16)->unique();
|
||||
$table->uuid('item_id');
|
||||
$table->string('token', 16)->unique();
|
||||
$table->enum('type', ['file', 'folder']);
|
||||
$table->enum('permission', ['visitor', 'editor'])->nullable();
|
||||
$table->boolean('is_protected')->default(0);
|
||||
|
||||
Reference in New Issue
Block a user