- emoji refactoring

This commit is contained in:
Peter Papp
2021-02-27 09:44:43 +01:00
parent f38b265ba7
commit 92962aac17
5 changed files with 59 additions and 30 deletions

View File

@@ -19,7 +19,7 @@ class CreateFileManagerFolders extends Migration
$table->uuid('parent_id')->nullable();
$table->text('name');
$table->string('color')->nullable();
$table->string('emoji')->nullable();
$table->longText('emoji')->nullable();
$table->enum('user_scope', ['master', 'editor', 'visitor'])->default('master');
$table->softDeletes();
$table->timestamps();