mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
- public sharing refactored part 1
This commit is contained in:
@@ -20,6 +20,8 @@ class CreateFileManagerFolders extends Migration
|
||||
$table->text('name');
|
||||
$table->string('color')->nullable();
|
||||
$table->longText('emoji')->nullable();
|
||||
|
||||
// TODO: upravit user scope
|
||||
$table->enum('user_scope', ['master', 'editor', 'visitor'])->default('master');
|
||||
$table->softDeletes();
|
||||
$table->timestamps();
|
||||
|
||||
@@ -27,6 +27,8 @@ class CreateFileManagerFiles extends Migration
|
||||
|
||||
$table->text('type')->nullable();
|
||||
$table->longText('metadata')->nullable();
|
||||
|
||||
// TODO: upravit user scope
|
||||
$table->enum('user_scope', ['master', 'editor', 'visitor'])->default('master');
|
||||
|
||||
$table->softDeletes();
|
||||
|
||||
Reference in New Issue
Block a user