In the database in the ps_customer table, just set the default date for the age_check column.
Or SQL query:
ALTER TABLE `ps_customer` ALTER COLUMN `agedate` DATE NOT NULL DEFAULT '2021-01-01';
In the database in the ps_customer table, just set the default date for the age_check column.
Or SQL query:
ALTER TABLE `ps_customer` ALTER COLUMN `agedate` DATE NOT NULL DEFAULT '2021-01-01';
In the database in the ps_customer table, just set the default date for the age_check column.