Save reposted reel id for future use
Some checks failed
Push image to registry / build-image (push) Failing after 52s

- Changed the managed account login from phone number, username or email to only username so it can be used for other things
This commit is contained in:
2025-08-05 13:58:10 +02:00
parent aa936a2a11
commit e3713773b7
3 changed files with 81 additions and 7 deletions

View File

@ -0,0 +1,33 @@
<?php
use App\Models\JobInfo;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
JobInfo::where('key', 'instagram_repost_account_email')
->update([
'key' => 'instagram_repost_account_username',
'description' => "Le nom d'utilisateur unique utilisé pour le compte Instagram de repost."
]);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
JobInfo::where('key', 'instagram_repost_account_username')
->update([
'key' => 'instagram_repost_account_email',
'description' => "L'adresse e-mail/nom d'utilisateur/N° de téléphone utilisée pour le compte Instagram de repost."
]);
}
};