I am in the process of changing hosts and moving to 20i.
I am trying to import my zipped database backup into phpmyadmin but receiving this error. The table is not standard Phoenix Cart its an import module I am working on.
This is the sql. I have googled the error but can not seem to find a fix that works.#1067 - Invalid default value for 'created_at'
Any help would be appreciated.CREATE TABLE store_manual_categories ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, parent_id int(11), feed_category_path text, created_at timestamp default 'current_timestamp()', PRIMARY KEY (id), KEY idx_parent_id (parent_id), KEY idx_name (name));
Thanks
Mark