Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamKyle committed Nov 21, 2023
1 parent 2fb4e7d commit cf3181c
Show file tree
Hide file tree
Showing 2 changed files with 171 additions and 145 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('guide_quests', function (Blueprint $table) {
$table->renameColumn('require_event_goal_participation', 'required_event_goal_participation');
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};
Loading

0 comments on commit cf3181c

Please sign in to comment.