Skip to content

Commit 5933a64

Browse files
authored
fix: service name (#686)
1 parent 4153d42 commit 5933a64

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use App\Models\Service\Service;
6+
use Illuminate\Database\Migrations\Migration;
7+
8+
return new class extends Migration
9+
{
10+
/**
11+
* Run the migrations.
12+
*/
13+
public function up(): void
14+
{
15+
Service::query()
16+
->where('code', 'STR_11')
17+
->update([
18+
'name' => 'Mobilizare vaccin',
19+
]);
20+
}
21+
};

0 commit comments

Comments
 (0)