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.
Whenever I define a relation on an entity, a foreign key is created (duh), but I do not have the ability to specify what happens to the column (or row) when the referenced column is updated or deleted.
Let's say I have a plugin that has a custom field definition on the Product entity that relates to a custom entity:
This results in a column being created on the product entity like this:
ALTER TABLE product ADD CONSTRAINT FK_41a265244115fe63127e554b20c FOREIGN KEY (customFieldsRevenuegroupidid) REFERENCES revenue_group(id) ON DELETE NO ACTION ON UPDATE NO ACTION
I would like to be able to control what happens ON DELETE or ON UPDATE
Describe the solution you'd like
I would like the RelationCustomFieldConfig type/interface to support customizability for the ON DELETE and ON UPDATE options just like we can when defining relationships in (custom) entities through decorators.
a custom migration, and setting the custom field's type to int but that did not work like expected, because when developing locally synchronize cannot be set to true since the migration would just be undone (because schema mismatch).
I have tried setting synchronize to false and calling runMigrations(config) before bootstrapping the application, but that resulted in warnings being printed to the console that I needed to create another migration to remove the foreign key:
[server] Successfully ran migration: AddOnDeletionTriggerForRevenueGroups1742218462222
[server] Your database schema does not match your current configuration. Generate a new migration for the following changes:
[server] - ALTER TABLE `product` DROP FOREIGN KEY `FK_RG_ID`
Is your feature request related to a problem? Please describe.
Whenever I define a relation on an entity, a foreign key is created (duh), but I do not have the ability to specify what happens to the column (or row) when the referenced column is updated or deleted.
Let's say I have a plugin that has a custom field definition on the
Product
entity that relates to a custom entity:The custom entity definition looks like this:
This results in a column being created on the product entity like this:
I would like to be able to control what happens ON DELETE or ON UPDATE
Describe the solution you'd like
I would like the
RelationCustomFieldConfig
type/interface to support customizability for theON DELETE
andON UPDATE
options just like we can when defining relationships in (custom) entities through decorators.An example type could look like this:
Describe alternatives you've considered
int
but that did not work like expected, because when developing locallysynchronize
cannot be set totrue
since the migration would just be undone (because schema mismatch).synchronize
to false and callingrunMigrations(config)
before bootstrapping the application, but that resulted in warnings being printed to the console that I needed to create another migration to remove the foreign key:Additional context
The text was updated successfully, but these errors were encountered: