Added telescope, basic project endpoint, basic filament resources, GitHub actions

This commit is contained in:
Constantin Graf
2024-01-28 18:57:28 +01:00
parent e4f0eac834
commit e60e502612
80 changed files with 2563 additions and 135 deletions

View File

@@ -27,6 +27,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('teams');
Schema::dropIfExists('organizations');
}
};

View File

@@ -29,6 +29,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('team_user');
Schema::dropIfExists('organization_user');
}
};

View File

@@ -31,6 +31,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('team_invitations');
Schema::dropIfExists('organization_invitations');
}
};