From 105df21437101bdb6425fc5bcdb9dded68a78482 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Tue, 26 Sep 2023 02:15:08 +0000 Subject: [PATCH] Apply fixes from StyleCI --- .../2023_09_25_091419_add_gender_to_badaso_users_table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Migrations/2023_09_25_091419_add_gender_to_badaso_users_table.php b/src/Migrations/2023_09_25_091419_add_gender_to_badaso_users_table.php index 1b3f9f6f..5ef085a1 100644 --- a/src/Migrations/2023_09_25_091419_add_gender_to_badaso_users_table.php +++ b/src/Migrations/2023_09_25_091419_add_gender_to_badaso_users_table.php @@ -13,8 +13,8 @@ class AddGenderToBadasoUsersTable extends Migration */ public function up() { - Schema::table(config('badaso.database.prefix') . 'users', function (Blueprint $table) { - $table->enum('gender', ['man', 'woman'])->nullable()->after('additional_info');; + Schema::table(config('badaso.database.prefix').'users', function (Blueprint $table) { + $table->enum('gender', ['man', 'woman'])->nullable()->after('additional_info'); }); } @@ -25,7 +25,7 @@ public function up() */ public function down() { - Schema::table(config('badaso.database.prefix') . 'users', function (Blueprint $table) { + Schema::table(config('badaso.database.prefix').'users', function (Blueprint $table) { $table->dropColumn('gender'); }); }