Skip to content

Commit

Permalink
mig
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiritin committed Sep 16, 2024
1 parent 52aa9e4 commit 1488f93
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

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

return new class extends Migration {
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->after('pin_code', function (Blueprint $table) {
$table->rememberToken();
});
});
}

};

0 comments on commit 1488f93

Please sign in to comment.