You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
All domains have a Migrate() function that is being called by migrate command cli only. In this case, mixing migration logic in domain is not needed therefore it is not necessary to add Migrate to the service signature.
On the other hand, there is no business logic when running migration with migrate command. The migration should be store-specific and directly access repository layer.
Is your feature request related to a problem? Please describe.
All domains have a
Migrate()
function that is being called bymigrate
command cli only. In this case, mixing migration logic in domain is not needed therefore it is not necessary to addMigrate
to the service signature.On the other hand, there is no
business logic
when running migration withmigrate
command. The migration should be store-specific and directly access repository layer.Describe the solution you'd like
MigrateAll()
function.Migrate()
function in all services.migrate
command to run repository migration.The text was updated successfully, but these errors were encountered: