This commit is contained in:
f4ilji
2024-11-11 16:09:54 +05:00
parent 13318ea54d
commit 55741ac28b
@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->string('slug')->unique()->nullable()->after('name');
$table->string('slug')->unique()->after('name')->nullable();
});
}