Skip to content
Snippets Groups Projects
Commit 3237e76d authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by Jan-Hendrik Willms
Browse files

fixes #3282

Closes #3282

Merge request studip/studip!2217
parent 2982cfec
No related branches found
No related tags found
No related merge requests found
<?php
/**
* @see https://gitlab.studip.de/studip/studip/-/issues/3282
*/
final class CleanupResourceProperties extends Migration
{
public function description()
{
return 'Removes orphaned rows from table "resource_properties" with no '
. 'definition in table "resource_property_definitions"';
}
protected function up()
{
$query = "DELETE FROM `resource_properties`
WHERE `property_id` NOT IN (
SELECT `property_id`
FROM `resource_property_definitions`
)";
DBManager::get()->exec($query);
}
}
......@@ -59,6 +59,13 @@ class ResourcePropertyDefinition extends SimpleORMap
'class_name' => ResourcePropertyGroup::class,
'foreign_key' => 'property_group_id'
];
$config['has_many']['properties'] = [
'class_name' => ResourceProperty::class,
'assoc_foreign_key' => 'property_id',
'on_delete' => 'delete',
];
$config['i18n_fields']['display_name'] = true;
$config['i18n_fields']['description'] = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment