Automation Objects: allow to change their ID

This commit is contained in:
Thomas Gelf 2018-10-08 08:37:02 +02:00
parent affcc54ba3
commit 50dd49c937
3 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,8 @@ class DirectorJob extends DbObjectWithSettings implements ExportInterface
protected $autoincKeyName = 'id';
protected $protectAutoinc = false;
protected $defaultProperties = [
'id' => null,
'job_name' => null,

View File

@ -22,6 +22,8 @@ class ImportSource extends DbObjectWithSettings implements ExportInterface
protected $autoincKeyName = 'id';
protected $protectAutoinc = false;
protected $defaultProperties = [
'id' => null,
'source_name' => null,

View File

@ -20,6 +20,8 @@ class SyncRule extends DbObject implements ExportInterface
protected $autoincKeyName = 'id';
protected $protectAutoinc = false;
protected $defaultProperties = [
'id' => null,
'rule_name' => null,