Skip to content

Commit 0f60a88

Browse files
authored
Refactor MovePathToProjects migration class
Updated migration class to extend BaseMigration instead of AbstractMigration.
1 parent 0fb8fe9 commit 0f60a88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/Migrations/20251115200000_MovePathToProjects.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php
22
declare(strict_types=1);
33

4-
use Migrations\AbstractMigration;
4+
use Migrations\BaseMigration;
55

66
/**
77
* Move path field from translate_domains to translate_projects
88
*/
9-
class MovePathToProjects extends AbstractMigration {
9+
class MovePathToProjects extends BaseMigration {
1010

1111
/**
1212
* Change Method.

0 commit comments

Comments
 (0)