mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-24 13:44:42 +00:00
- it_update_member_permission_in_team_folder
- it_remove_member_from_team_folder - it_add_member_into_team_folder
This commit is contained in:
+3
-3
@@ -2,17 +2,17 @@
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Domain\Teams\Models\TeamFoldersInvitation;
|
||||
use Domain\Teams\Models\TeamFolderInvitation;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class TeamFoldersInvitationFactory extends Factory
|
||||
class TeamFolderInvitationFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = TeamFoldersInvitation::class;
|
||||
protected $model = TeamFolderInvitation::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
+2
-2
@@ -4,7 +4,7 @@ use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateTeamFoldersInvitationsTable extends Migration
|
||||
class CreateTeamFolderInvitationsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
@@ -13,7 +13,7 @@ class CreateTeamFoldersInvitationsTable extends Migration
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('team_folders_invitations', function (Blueprint $table) {
|
||||
Schema::create('team_folder_invitations', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->uuid('folder_id');
|
||||
$table->text('email');
|
||||
Reference in New Issue
Block a user