mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-03 20:55:59 +00:00
UI enhancements for file request
This commit is contained in:
@@ -16,9 +16,10 @@ class CreateUploadRequestsTable extends Migration
|
||||
Schema::create('upload_requests', function (Blueprint $table) {
|
||||
$table->uuid('id');
|
||||
$table->uuid('user_id');
|
||||
$table->uuid('folder_id');
|
||||
$table->uuid('folder_id')->nullable();
|
||||
$table->enum('status', ['active', 'filling', 'filled', 'expired'])->default('active');
|
||||
$table->string('email')->nullable();
|
||||
$table->text('name')->nullable();
|
||||
$table->longText('notes')->nullable();
|
||||
$table->timestamps();
|
||||
$table->charset = 'utf8mb4';
|
||||
|
||||
Reference in New Issue
Block a user