oms-ContractManagement/Admin/Install/db.json
Dennis Eichhorn dcb030febd
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled
fix permissions
2025-04-02 14:15:04 +00:00

454 lines
16 KiB
JSON

{
"contractmgmt_type": {
"name": "contractmgmt_type",
"fields": {
"contractmgmt_type_id": {
"name": "contractmgmt_type_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_type_name": {
"name": "contractmgmt_type_name",
"type": "VARCHAR(255)",
"null": false
}
}
},
"contractmgmt_type_l11n": {
"name": "contractmgmt_type_l11n",
"fields": {
"contractmgmt_type_l11n_id": {
"name": "contractmgmt_type_l11n_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_type_l11n_title": {
"name": "contractmgmt_type_l11n_title",
"type": "VARCHAR(255)",
"null": false
},
"contractmgmt_type_l11n_type": {
"name": "contractmgmt_type_l11n_type",
"type": "INT(11)",
"null": false,
"foreignTable": "contractmgmt_type",
"foreignKey": "contractmgmt_type_id"
},
"contractmgmt_type_l11n_lang": {
"name": "contractmgmt_type_l11n_lang",
"type": "VARCHAR(2)",
"null": false,
"foreignTable": "language",
"foreignKey": "language_639_1"
}
}
},
"contractmgmt_contract": {
"name": "contractmgmt_contract",
"fields": {
"contractmgmt_contract_id": {
"name": "contractmgmt_contract_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_contract_template": {
"name": "contractmgmt_contract_template",
"type": "TINYINT(1)",
"null": false
},
"contractmgmt_contract_title": {
"name": "contractmgmt_contract_title",
"type": "VARCHAR(255)",
"null": false
},
"contractmgmt_contract_description": {
"name": "contractmgmt_contract_description",
"type": "TEXT",
"null": false
},
"contractmgmt_contract_account": {
"name": "contractmgmt_contract_account",
"type": "INT",
"null": true,
"foreignTable": "account",
"foreignKey": "account_id"
},
"contractmgmt_contract_startoriginal": {
"name": "contractmgmt_contract_startoriginal",
"type": "DATETIME",
"null": false
},
"contractmgmt_contract_start": {
"name": "contractmgmt_contract_start",
"type": "DATETIME",
"null": false
},
"contractmgmt_contract_end": {
"name": "contractmgmt_contract_end",
"type": "DATETIME",
"null": true,
"default": null
},
"contractmgmt_contract_costs": {
"name": "contractmgmt_contract_costs",
"type": "BIGINT",
"null": true,
"default": null
},
"contractmgmt_contract_renewal": {
"name": "contractmgmt_contract_renewal",
"type": "INT",
"null": false
},
"contractmgmt_contract_autorenewal": {
"name": "contractmgmt_contract_autorenewal",
"type": "TINYINT",
"null": false
},
"contractmgmt_contract_duration": {
"name": "contractmgmt_contract_duration",
"type": "INT",
"null": false
},
"contractmgmt_contract_warning": {
"name": "contractmgmt_contract_warning",
"type": "INT",
"null": false
},
"contractmgmt_contract_type": {
"name": "contractmgmt_contract_type",
"type": "INT",
"null": true,
"default": null,
"foreignTable": "contractmgmt_type",
"foreignKey": "contractmgmt_type_id"
},
"contractmgmt_contract_parent": {
"name": "contractmgmt_contract_parent",
"type": "INT",
"null": true,
"default": null,
"foreignTable": "contractmgmt_contract",
"foreignKey": "contractmgmt_contract_id"
},
"contractmgmt_contract_unit": {
"name": "contractmgmt_contract_unit",
"type": "INT",
"null": true,
"default": null,
"foreignTable": "unit",
"foreignKey": "unit_id"
},
"contractmgmt_contract_responsible": {
"name": "contractmgmt_contract_responsible",
"type": "INT",
"null": true,
"default": null,
"foreignTable": "account",
"foreignKey": "account_id"
},
"contractmgmt_contract_created_at": {
"name": "contractmgmt_contract_created_at",
"type": "DATETIME",
"null": false
}
}
},
"contractmgmt_contract_media": {
"name": "contractmgmt_contract_media",
"fields": {
"contractmgmt_contract_media_id": {
"name": "contractmgmt_contract_media_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_contract_media_contract": {
"name": "contractmgmt_contract_media_contract",
"type": "INT",
"null": false,
"foreignTable": "contractmgmt_contract",
"foreignKey": "contractmgmt_contract_id"
},
"contractmgmt_contract_media_media": {
"name": "contractmgmt_contract_media_media",
"type": "INT",
"null": false,
"foreignTable": "media",
"foreignKey": "media_id"
}
}
},
"contractmgmt_contract_note": {
"name": "contractmgmt_contract_note",
"fields": {
"contractmgmt_contract_note_id": {
"name": "contractmgmt_contract_note_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_contract_note_contract": {
"name": "contractmgmt_contract_note_contract",
"type": "INT",
"null": false,
"foreignTable": "contractmgmt_contract",
"foreignKey": "contractmgmt_contract_id"
},
"contractmgmt_contract_note_doc": {
"name": "contractmgmt_contract_note_doc",
"type": "INT",
"null": false,
"foreignTable": "editor_doc",
"foreignKey": "editor_doc_id"
}
}
},
"contractmgmt_attr_type": {
"name": "contractmgmt_attr_type",
"fields": {
"contractmgmt_attr_type_id": {
"name": "contractmgmt_attr_type_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_attr_type_name": {
"name": "contractmgmt_attr_type_name",
"type": "VARCHAR(255)",
"null": false,
"unique": true
},
"contractmgmt_attr_type_datatype": {
"name": "contractmgmt_attr_type_datatype",
"type": "INT(11)",
"null": false
},
"contractmgmt_attr_type_fields": {
"name": "contractmgmt_attr_type_fields",
"type": "INT(11)",
"null": false
},
"contractmgmt_attr_type_custom": {
"name": "contractmgmt_attr_type_custom",
"type": "TINYINT(1)",
"null": false
},
"contractmgmt_attr_type_repeatable": {
"name": "contractmgmt_attr_type_repeatable",
"type": "TINYINT(1)",
"null": false
},
"contractmgmt_attr_type_internal": {
"name": "contractmgmt_attr_type_internal",
"type": "TINYINT(1)",
"null": false
},
"contractmgmt_attr_type_required": {
"comment": "Every contract must have this attribute type if set to true.",
"name": "contractmgmt_attr_type_required",
"type": "TINYINT(1)",
"null": false
},
"contractmgmt_attr_type_pattern": {
"comment": "This is a regex validation pattern.",
"name": "contractmgmt_attr_type_pattern",
"type": "VARCHAR(255)",
"null": false
}
}
},
"contractmgmt_attr_type_l11n": {
"name": "contractmgmt_attr_type_l11n",
"fields": {
"contractmgmt_attr_type_l11n_id": {
"name": "contractmgmt_attr_type_l11n_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_attr_type_l11n_title": {
"name": "contractmgmt_attr_type_l11n_title",
"type": "VARCHAR(255)",
"null": false
},
"contractmgmt_attr_type_l11n_type": {
"name": "contractmgmt_attr_type_l11n_type",
"type": "INT(11)",
"null": false,
"foreignTable": "contractmgmt_attr_type",
"foreignKey": "contractmgmt_attr_type_id"
},
"contractmgmt_attr_type_l11n_lang": {
"name": "contractmgmt_attr_type_l11n_lang",
"type": "VARCHAR(2)",
"null": false,
"foreignTable": "language",
"foreignKey": "language_639_1"
}
}
},
"contractmgmt_attr_value": {
"name": "contractmgmt_attr_value",
"fields": {
"contractmgmt_attr_value_id": {
"name": "contractmgmt_attr_value_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_attr_value_default": {
"name": "contractmgmt_attr_value_default",
"type": "TINYINT(1)",
"null": false
},
"contractmgmt_attr_value_valueStr": {
"name": "contractmgmt_attr_value_valueStr",
"type": "VARCHAR(255)",
"null": true,
"default": null
},
"contractmgmt_attr_value_valueInt": {
"name": "contractmgmt_attr_value_valueInt",
"type": "INT(11)",
"null": true,
"default": null
},
"contractmgmt_attr_value_valueDec": {
"name": "contractmgmt_attr_value_valueDec",
"type": "DECIMAL(19,5)",
"null": true,
"default": null
},
"contractmgmt_attr_value_valueDat": {
"name": "contractmgmt_attr_value_valueDat",
"type": "DATETIME",
"null": true,
"default": null
},
"contractmgmt_attr_value_unit": {
"name": "contractmgmt_attr_value_unit",
"type": "VARCHAR(255)",
"null": false
},
"contractmgmt_attr_value_deptype": {
"name": "contractmgmt_attr_value_deptype",
"type": "INT(11)",
"null": true,
"default": null,
"foreignTable": "contractmgmt_attr_type",
"foreignKey": "contractmgmt_attr_type_id"
},
"contractmgmt_attr_value_depvalue": {
"name": "contractmgmt_attr_value_depvalue",
"type": "INT(11)",
"null": true,
"default": null,
"foreignTable": "contractmgmt_attr_value",
"foreignKey": "contractmgmt_attr_value_id"
}
}
},
"contractmgmt_attr_value_l11n": {
"name": "contractmgmt_attr_value_l11n",
"fields": {
"contractmgmt_attr_value_l11n_id": {
"name": "contractmgmt_attr_value_l11n_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_attr_value_l11n_title": {
"name": "contractmgmt_attr_value_l11n_title",
"type": "VARCHAR(255)",
"null": false
},
"contractmgmt_attr_value_l11n_value": {
"name": "contractmgmt_attr_value_l11n_value",
"type": "INT(11)",
"null": false,
"foreignTable": "contractmgmt_attr_value",
"foreignKey": "contractmgmt_attr_value_id"
},
"contractmgmt_attr_value_l11n_lang": {
"name": "contractmgmt_attr_value_l11n_lang",
"type": "VARCHAR(2)",
"null": false,
"foreignTable": "language",
"foreignKey": "language_639_1"
}
}
},
"contractmgmt_contract_attr_default": {
"name": "contractmgmt_contract_attr_default",
"fields": {
"contractmgmt_contract_attr_default_id": {
"name": "contractmgmt_contract_attr_default_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_contract_attr_default_type": {
"name": "contractmgmt_contract_attr_default_type",
"type": "INT(11)",
"null": false,
"foreignTable": "contractmgmt_attr_type",
"foreignKey": "contractmgmt_attr_type_id"
},
"contractmgmt_contract_attr_default_value": {
"name": "contractmgmt_contract_attr_default_value",
"type": "INT(11)",
"null": false,
"foreignTable": "contractmgmt_attr_value",
"foreignKey": "contractmgmt_attr_value_id"
}
}
},
"contractmgmt_contract_attr": {
"name": "contractmgmt_contract_attr",
"fields": {
"contractmgmt_contract_attr_id": {
"name": "contractmgmt_contract_attr_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"contractmgmt_contract_attr_contract": {
"name": "contractmgmt_contract_attr_contract",
"type": "INT(11)",
"null": false,
"foreignTable": "contractmgmt_contract",
"foreignKey": "contractmgmt_contract_id"
},
"contractmgmt_contract_attr_type": {
"name": "contractmgmt_contract_attr_type",
"type": "INT(11)",
"null": false,
"foreignTable": "contractmgmt_attr_type",
"foreignKey": "contractmgmt_attr_type_id"
},
"contractmgmt_contract_attr_value": {
"name": "contractmgmt_contract_attr_value",
"type": "INT(11)",
"null": true,
"default": null,
"foreignTable": "contractmgmt_attr_value",
"foreignKey": "contractmgmt_attr_value_id"
}
}
}
}