fix bitbucket (#119)

Fix Bitbucket API errors
This commit is contained in:
Saeed Vaziry
2024-03-17 11:36:04 +01:00
committed by GitHub
parent f0c4fc4812
commit b07ae470f9
10 changed files with 167 additions and 45 deletions

View File

@ -11,7 +11,8 @@ public function up(): void
Schema::create('source_controls', function (Blueprint $table) {
$table->id();
$table->string('provider');
$table->longText('access_token');
$table->json('provider_data')->nullable()->after('provider');
$table->longText('access_token')->nullable(); // @TODO: remove this column
$table->timestamps();
});
}