fond-of-impala / company-type
Company type module
1.0.0
2024-01-02 08:08 UTC
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: 2024-11-06 13:01:14 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!