mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
event implementation
This commit is contained in:
@@ -48,7 +48,7 @@ class UserFactory extends Factory
|
||||
$user
|
||||
->settings()
|
||||
->create([
|
||||
'storage_capacity' => $this->faker->randomNumber(1),
|
||||
'max_storage_amount' => $this->faker->randomNumber(1),
|
||||
'name' => $this->faker->name,
|
||||
'address' => $this->faker->address,
|
||||
'state' => $this->faker->state,
|
||||
|
||||
@@ -15,7 +15,7 @@ class CreateUserSettingsTable extends Migration
|
||||
{
|
||||
Schema::create('user_settings', function (Blueprint $table) {
|
||||
$table->uuid('user_id')->index();
|
||||
$table->integer('storage_capacity')->default(5);
|
||||
$table->integer('max_storage_amount')->default(5);
|
||||
$table->string('avatar')->nullable();
|
||||
$table->string('color')->nullable();
|
||||
$table->text('name')->nullable();
|
||||
|
||||
Reference in New Issue
Block a user