Skip to content

Commit f0b7de1

Browse files
committed
update_to_5.0.md: Add date-time and symbol
1 parent b08be42 commit f0b7de1

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

docs/update_and_migration/from_4.6/update_to_5.0.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ composer remove --no-update \
197197
ibexa/connector-ai \
198198
ibexa/connector-openai \
199199
ibexa/product-catalog-date-time-attribute \
200-
ibexa/product-catalog-symbol-attribute/
200+
ibexa/product-catalog-symbol-attribute \
201201
ibexa/discounts \
202202
ibexa/discounts-codes \
203203
;
@@ -428,6 +428,35 @@ Features which were optional 4.6 LTS Updates are now part of 5.0.0.
428428
php bin/console ibexa:doctrine:schema:dump-sql vendor/ibexa/connector-ai/src/bundle/Resources/config/schema.yaml | psql <database_name>
429429
```
430430

431+
#### Install date and time attribute type
432+
433+
=== "MySQL"
434+
435+
```bash
436+
php bin/console ibexa:doctrine:schema:dump-sql vendor/ibexa/product-catalog-date-time-attribute/src/bundle/Resources/config/schema.yaml | mysql -u <username> -p <password> <database_name>
437+
```
438+
439+
=== "PostgreSQL"
440+
441+
```bash
442+
php bin/console ibexa:doctrine:schema:dump-sql vendor/ibexa/product-catalog-date-time-attribute/src/bundle/Resources/config/schema.yaml | psql <database_name>
443+
```
444+
445+
#### Install symbol attribute type
446+
447+
=== "MySQL"
448+
449+
```bash
450+
php bin/console ibexa:doctrine:schema:dump-sql vendor/ibexa/product-catalog-symbol-attribute/src/bundle/Resources/config/schema.yaml | mysql -u <username> -p <password> <database_name>
451+
```
452+
453+
=== "PostgreSQL"
454+
455+
```bash
456+
php bin/console ibexa:doctrine:schema:dump-sql vendor/ibexa/product-catalog-symbol-attribute/src/bundle/Resources/config/schema.yaml | psql <database_name>
457+
```
458+
459+
431460
#### Install collaboration
432461

433462
=== "MySQL"

0 commit comments

Comments
 (0)