Installation failure on table create

When doing a fresh install it fails out of the box on creating a table. From the logs this SQL statement was found.

CREATE TABLE aos_products (id char(36) NOT NULL ,name varchar(255) NULL ,date_entered datetime NULL ,date_modified datetime NULL ,modified_user_id char(36) NULL ,created_by char(36) NULL ,description text NULL ,deleted bool DEFAULT ‘0’ NULL ,assigned_user_id char(36) NULL ,maincode varchar(100) DEFAULT ‘XXXX’ NULL ,part_number varchar(25) NULL ,category varchar(100) NULL ,type varchar(100) DEFAULT ‘Good’ NULL ,cost decimal(26,6) NULL ,cost_usdollar decimal(26,6) NULL ,currency_id char(36) NULL ,price decimal(26,6) NULL ,price_usdollar decimal(26,6) NULL ,url varchar(255) NULL ,contact_id char(36) NULL ,product_image varchar(255) NULL ,aos_product_category_id char(36) NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , PRIMARY KEY (id)) CHARACTER SET utf8 COLLATE utf8_general_ci

What is up with all the NULL entries which have no corresponding field name?

What version of SuiteCRM are you using ?

These nulls normally mean that the database is not in sync with the files. the files in question would normally be found in

custom/Extension/modules/AOS_Products/Ext/Vardefs

Ian