TypedAvatar.vue colored background

This commit is contained in:
Peter Papp
2021-08-31 09:52:22 +02:00
parent ac62a432fe
commit f44e262d6e
26 changed files with 115 additions and 524 deletions

View File

@@ -17,6 +17,7 @@ class CreateUserSettingsTable extends Migration
$table->uuid('user_id')->index();
$table->integer('storage_capacity')->default(5);
$table->string('avatar')->nullable();
$table->string('color')->nullable();
$table->text('name')->nullable();
$table->text('address')->nullable();
$table->text('state')->nullable();

View File

@@ -17,6 +17,7 @@ class CreateTeamFolderInvitationsTable extends Migration
$table->uuid('id')->primary();
$table->uuid('folder_id');
$table->text('email');
$table->string('color')->nullable();
$table->enum('permission', ['can-edit', 'can-view', 'can-view-and-download']);
$table->enum('status', ['pending', 'accepted', 'rejected'])->default('pending');
$table->timestamps();