This commit is contained in:
Andras Bacsai
2023-05-25 12:00:09 +02:00
parent 5a1a33242c
commit f766600fd8
41 changed files with 151 additions and 79 deletions

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::create('gits', function (Blueprint $table) {
$table->id();
$table->bigIncrements('id');
$table->enum('type', ['github', 'gitlab', 'bitbucket', 'custom']);
$table->string('api_url');