Checkout
Returning customer? Click here to login
Have a coupon? Click here to enter your code
WordPress database error: [Incorrect table definition; there can be only one auto column and it must be defined as a key]CREATE TABLE wprt_omni_profiles (
id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
profile_id varchar(36) NOT NULL,
master_user_id bigint(20) unsigned NOT NULL,
profile_label varchar(191) NOT NULL DEFAULT '',
profile_email varchar(191) DEFAULT NULL,
profile_phone varchar(50) DEFAULT NULL,
profile_status varchar(20) NOT NULL DEFAULT 'active',
is_primary tinyint(1) unsigned NOT NULL DEFAULT 0,
kyc_data longtext DEFAULT NULL,
wallet_balance decimal(18,2) NOT NULL DEFAULT '0.00',
created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
UNIQUE KEY profile_id_unique (profile_id),
UNIQUE KEY profile_email_unique (profile_email),
UNIQUE KEY profile_phone_unique (profile_phone),
KEY master_user_id (master_user_id),
KEY profile_status (profile_status)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci