- it_update_member_permission_in_team_folder

- it_remove_member_from_team_folder
- it_add_member_into_team_folder
This commit is contained in:
Peter Papp
2021-08-24 18:28:20 +02:00
parent bcfe813e1e
commit dfa82535eb
5 changed files with 213 additions and 13 deletions

View File

@@ -15,7 +15,7 @@ class CreateTeamFolderMembersTable extends Migration
{
Schema::create('team_folder_members', function (Blueprint $table) {
$table->uuid('folder_id');
$table->uuid('member_id');
$table->uuid('user_id');
$table->string('permission');
$table->charset = 'utf8mb4';
$table->collation = 'utf8mb4_unicode_ci';