fond-of-impala / company-type
Company type module
Installs: 1 342
Dependents: 14
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/fond-of-impala/company-type
Requires
- php: >=8.0
- fond-of-spryker/jellyfish-b2b-extension: dev-master
- spryker/company-business-unit: ^1.0.0 || ^2.0.0
- spryker/company-extension: ^1.0
Requires (Dev)
This package is not auto-updated.
Last update: 2025-10-08 17:32:35 UTC
README
Module was migrated from fond-of-spryker/company-type
. Please read below for migration instruction!
Installation
composer require fond-of-impala/company-type
Migration
To prevent losing data, please rename db data like
do
$$
begin
ALTER TABLE spy_company RENAME CONSTRAINT "spy_company-fos_company_type" TO "spy_company-foi_company_type";
ALTER TABLE fos_company_type RENAME CONSTRAINT "fos_company_type-name" TO "foi_company_type-name";
ALTER TABLE fos_company_type RENAME TO foi_company_type;
ALTER SEQUENCE fos_company_type_pk_seq RENAME TO foi_company_type_pk_seq;
end
$$;
You can use also the fond-of-oryx/propel-pre-migration
package for migration. Just use the package and create migration file with the above content!