Skip to content

Commit

Permalink
Merge pull request #1035 from uasoft-indonesia/analysis-16mvxL
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
miftahurrahmi authored Sep 26, 2023
2 parents bdf0238 + 11b97a4 commit 6216188
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
}

Expand All @@ -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');
});
}
Expand Down

0 comments on commit 6216188

Please sign in to comment.