--- /dev/null
+<?php
+
+namespace App\Console\Commands;
+
+use App\Models\DiscordBotCommand;
+use Illuminate\Console\Command;
+
+class DiscordSyncUserCommand extends Command
+{
+ /**
+ * The name and signature of the console command.
+ *
+ * @var string
+ */
+ protected $signature = 'discord:sync-user {user_id}';
+
+ /**
+ * The console command description.
+ *
+ * @var string
+ */
+ protected $description = 'Sync discord user with given ID';
+
+ /**
+ * Execute the console command.
+ *
+ * @return int
+ */
+ public function handle()
+ {
+ $user_id = $this->argument('user_id');
+
+ DiscordBotCommand::syncUser($user_id);
+
+ return 0;
+ }
+}