From 59a910d326597800eabde535a5f74bfe4635467b Mon Sep 17 00:00:00 2001 From: Saeid Date: Mon, 25 May 2020 19:07:18 +0430 Subject: [PATCH] feat: responsibility to user --- database/migrations/2020_05_13_073148_update_table_users.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2020_05_13_073148_update_table_users.php b/database/migrations/2020_05_13_073148_update_table_users.php index aecccc2..8f9c3b6 100644 --- a/database/migrations/2020_05_13_073148_update_table_users.php +++ b/database/migrations/2020_05_13_073148_update_table_users.php @@ -16,6 +16,7 @@ class UpdateTableUsers extends Migration Schema::table('users', function (Blueprint $table) { $table->string('file_code')->nullable(); $table->enum('user_type', ['natural','juridical'])->default('natural'); + $table->string('responsibility')->default('client'); $table->string('father_name')->nullable(); $table->string('website')->nullable(); $table->text('description')->nullable();