Skip to content

Commit d4c402c

Browse files
committed
Align migration comment style
1 parent 3700d2b commit d4c402c

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

database/migrations/update_schedules_table_add_disabled_at.php.stub

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ use Illuminate\Support\Facades\Schema;
66

77
return new class extends Migration
88
{
9+
/**
10+
* Run the migrations.
11+
*/
912
public function up(): void
1013
{
1114
Schema::table('schedules', function (Blueprint $table) {
1215
$table->timestamp('disabled_at')->nullable()->after('last_run_at');
1316
});
1417
}
1518

19+
/**
20+
* Reverse the migrations.
21+
*/
1622
public function down(): void
1723
{
1824
Schema::table('schedules', function (Blueprint $table) {

0 commit comments

Comments
 (0)