Skip to content

Commit 1488f93

Browse files
committed
mig
1 parent 52aa9e4 commit 1488f93

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration {
8+
public function up(): void
9+
{
10+
Schema::table('users', function (Blueprint $table) {
11+
$table->after('pin_code', function (Blueprint $table) {
12+
$table->rememberToken();
13+
});
14+
});
15+
}
16+
17+
};

0 commit comments

Comments
 (0)