Skip to content

Commit 82036ba

Browse files
committed
IBX-6144 - Fix: ibexa.migrations command
1 parent fff5c0a commit 82036ba

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/content_management/data_migration/exporting_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ php bin/console ibexa:migrations:generate --type=content --mode=create --file=my
274274

275275
!!! note
276276

277-
When migrating multiple files at once (for example when calling `ibexa:migration:migrate` without options),
277+
When migrating multiple files at once (for example when calling `ibexa:migrations:migrate` without options),
278278
they are executed in alphabetical order.
279279

280280
## user-context

docs/content_management/data_migration/importing_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ php bin/console ibexa:migrations:migrate --file=my_data_export.yaml
2020

2121
Migrations store execution metadata in the `ibexa_migrations` database table.
2222
This allows incremental upgrades:
23-
the `ibexa:migration:migrate` command ignores files that it had previously executed.
23+
the `ibexa:migrations:migrate` command ignores files that it had previously executed.
2424

2525
## Available migrations
2626

docs/update_and_migration/from_4.3/update_from_4.3_new_commerce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,5 +342,5 @@ you can now run data migration required by the Customer Portal applications feat
342342

343343
```bash
344344
php bin/console ibexa:migrations:import vendor/ibexa/corporate-account/src/bundle/Resources/migrations/application_internal_fields.yaml --name=2022_11_07_22_46_application_internal_fields.yaml
345-
php bin/console ibexa:migration:migrate --file=2022_11_07_22_46_application_internal_fields.yaml
345+
php bin/console ibexa:migrations:migrate --file=2022_11_07_22_46_application_internal_fields.yaml
346346
```

docs/update_and_migration/from_4.3/update_from_4.3_old_commerce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,5 +218,5 @@ run data migration required by the Customer Portal applications feature:
218218

219219
```bash
220220
php bin/console ibexa:migrations:import vendor/ibexa/corporate-account/src/bundle/Resources/migrations/application_internal_fields.yaml --name=2022_11_07_22_46_application_internal_fields.yaml
221-
php bin/console ibexa:migration:migrate --file=2022_11_07_22_46_application_internal_fields.yaml
221+
php bin/console ibexa:migrations:migrate --file=2022_11_07_22_46_application_internal_fields.yaml
222222
```

docs/update_and_migration/from_4.4/update_from_4.4.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -175,14 +175,14 @@ you can now run data migration required by the Customer Portal and Commerce feat
175175

176176
```bash
177177
php bin/console ibexa:migrations:import vendor/ibexa/corporate-account/src/bundle/Resources/migrations/customer_portal.yaml --name=2023_03_06_13_00_customer_portal.yaml
178-
php bin/console ibexa:migration:migrate --file=2023_03_06_13_00_customer_portal.yaml
178+
php bin/console ibexa:migrations:migrate --file=2023_03_06_13_00_customer_portal.yaml
179179
```
180180

181181
- Corporate access role update [[% include 'snippets/experience_badge.md' %]] [[% include 'snippets/commerce_badge.md' %]]
182182

183183
```bash
184184
php bin/console ibexa:migrations:import vendor/ibexa/corporate-account/src/bundle/Resources/migrations/2023_05_09_12_40_corporate_access_role_update.yaml --name=2023_05_09_12_40_corporate_access_role_update.yaml
185-
php bin/console ibexa:migration:migrate --file=2023_05_09_12_40_corporate_access_role_update.yaml
185+
php bin/console ibexa:migrations:migrate --file=2023_05_09_12_40_corporate_access_role_update.yaml
186186
```
187187

188188
- Corporate account [[% include 'snippets/commerce_badge.md' %]]
@@ -191,26 +191,26 @@ This migration allows all company members to shop in the frontend shop. If you h
191191

192192
```bash
193193
php bin/console ibexa:migrations:import vendor/ibexa/storefront/src/bundle/Resources/migrations/2023_04_27_10_30_corporate_account.yaml --name=2023_04_27_10_30_corporate_account.yaml
194-
php bin/console ibexa:migration:migrate --file=2023_04_27_10_30_corporate_account.yaml
194+
php bin/console ibexa:migrations:migrate --file=2023_04_27_10_30_corporate_account.yaml
195195
```
196196

197197
- Storefront user update [[% include 'snippets/commerce_badge.md' %]]
198198

199199
```bash
200200
php bin/console ibexa:migrations:import vendor/ibexa/storefront/src/bundle/Resources/migrations/2023_04_27_11_20_storefront_user_role_update.yaml --name=2023_04_27_11_20_storefront_user_role_update.yaml
201-
php bin/console ibexa:migration:migrate --file=2023_04_27_11_20_storefront_user_role_update.yaml
201+
php bin/console ibexa:migrations:migrate --file=2023_04_27_11_20_storefront_user_role_update.yaml
202202
```
203203

204204
- Shipment permissions [[% include 'snippets/commerce_badge.md' %]]
205205

206206
```bash
207207
php bin/console ibexa:migrations:import vendor/ibexa/shipping/src/bundle/Resources/install/migrations/shipment_permissions.yaml --name=shipment_permissions.yaml
208-
php bin/console ibexa:migration:migrate --file=shipment_permissions.yaml
208+
php bin/console ibexa:migrations:migrate --file=shipment_permissions.yaml
209209
```
210210

211211
- Order permissions [[% include 'snippets/commerce_badge.md' %]]
212212

213213
```bash
214214
php bin/console ibexa:migrations:import vendor/ibexa/order-management/src/bundle/Resources/install/migrations/order_permissions.yaml --name=order_permissions.yaml
215-
php bin/console ibexa:migration:migrate --file=order_permissions.yaml
215+
php bin/console ibexa:migrations:migrate --file=order_permissions.yaml
216216
```

0 commit comments

Comments
 (0)