Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daVitekPL committed Jul 12, 2024
1 parent c81dd8c commit 2e02ee9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
container: escolasoft/php:8.2-heseya
services:
mysql:
image: mariadb:10.7
image: mysql:8
env:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: store-api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public function up(): void
{
Schema::create('consents', function (Blueprint $table): void {
$table->uuid('id')->index();
$table->uuid('id')->primary();
$table->string('name');
$table->string('description_html');
$table->boolean('required');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
use Domain\Organization\Models\Organization;
use Domain\Organization\Resources\OrganizationResource;
use Domain\Organization\Services\OrganizationService;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
use Illuminate\Http\Response as HttpResponse;
use Illuminate\Support\Facades\Response;
Expand Down

0 comments on commit 2e02ee9

Please sign in to comment.