fix customer custom field

This commit is contained in:
Ibnu Maksum
2024-02-19 09:29:11 +07:00
parent 2c16bb289e
commit f550af257a
8 changed files with 47 additions and 42 deletions

View File

@ -188,8 +188,8 @@ CREATE TABLE `tb_languages` (
`id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
DROP TABLE IF EXISTS `tbl_customers_custom_fields`;
CREATE TABLE tbl_customers_custom_fields (
DROP TABLE IF EXISTS `tbl_customers_fields`;
CREATE TABLE tbl_customers_fields (
id INT PRIMARY KEY AUTO_INCREMENT,
customer_id INT NOT NULL,
field_name VARCHAR(255) NOT NULL,