Skip to content

Commit

Permalink
Merge pull request #48 from musta20/main
Browse files Browse the repository at this point in the history
fix all tests
  • Loading branch information
musta20 authored Dec 2, 2024
2 parents d044cf6 + 2a5aee6 commit 5944bb5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions database/migrations/2024_01_25_100443_create_stores_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
{

Schema::create('stores', function (Blueprint $table) {
$socialMedia = [
$socialMedia = json_encode([
SocialMedia::FACEBOOK->value => '',
SocialMedia::X->value => '',
SocialMedia::INSTAGRAM->value => '',
Expand All @@ -23,7 +23,7 @@ public function up(): void
SocialMedia::TIKTOK->value => '',
SocialMedia::TELEGRAM->value => '',

];
]);

$table->ulid('id')->primary();
$table->string('title');
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions docker-compose-old.yaml → docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
dockerfile: Dockerfile

depends_on:
- app
- smt
volumes:
- ./:/var/www/vhost/smt/
- ./docker/nginx/nginx.conf:/etc/nginx/nginx.conf
Expand All @@ -29,7 +29,7 @@ services:
- 'traefik.http.routers.${PROJECT_NAME}_nginx.priority=1'
- 'traefik.docker.network=proxy'

app:
smt:
container_name: "${PROJECT_NAME}_php"
build:
context: ./docker/php
Expand Down

0 comments on commit 5944bb5

Please sign in to comment.