Add is_required column to pp_shop_products_custom_fields table

This commit introduces a new column `is_required` to the `pp_shop_products_custom_fields` table. The column is of type TINYINT, cannot be null, and has a default value of 1. This change is intended to enhance the product custom fields by allowing the specification of whether a field is mandatory.
This commit is contained in:
2025-08-19 20:31:44 +02:00
parent 84333c1b59
commit ef15f16e18
16 changed files with 137 additions and 28 deletions

View File

@@ -2228,4 +2228,20 @@ textarea.form-control {
width: 50px;
text-align: center;
}
}
.input-group-addon {
width: auto;
label {
display: flex;
align-items: center;
gap: 5px;
}
}
.additional_fields {
input[type="text"] {
height: 40px;
}
}