Marinda 6 X 2L
WordPress database error: [Table 'wp_r2m_image_storage' already exists]CREATE TABLE wp_r2m_image_storage (
id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
user_id bigint(20) UNSIGNED DEFAULT NULL,
username varchar(191) DEFAULT NULL,
chat_id varchar(64) NOT NULL,
source varchar(50) NOT NULL DEFAULT 'prescription',
message_id varchar(191) DEFAULT NULL,
media_id varchar(191) DEFAULT NULL,
mime_type varchar(100) DEFAULT NULL,
sha256 varchar(191) DEFAULT NULL,
caption text DEFAULT NULL,
comments text DEFAULT NULL,
doctor_details text DEFAULT NULL,
doctor_data longtext DEFAULT NULL,
medical_aid_details text DEFAULT NULL,
medical_aid_data longtext DEFAULT NULL,
customer_details text DEFAULT NULL,
customer_id varchar(64) DEFAULT NULL,
customer_data longtext DEFAULT NULL,
dependant_details text DEFAULT NULL,
dependant_code varchar(64) DEFAULT NULL,
dependant_data longtext DEFAULT NULL,
medications_data longtext DEFAULT NULL,
medications text DEFAULT NULL,
location_payload text DEFAULT NULL,
location_latitude decimal(10,7) DEFAULT NULL,
location_longitude decimal(10,7) DEFAULT NULL,
location_received_at datetime DEFAULT NULL,
storage_location varchar(20) NOT NULL DEFAULT 'local',
storage_bucket varchar(191) DEFAULT NULL,
storage_key text DEFAULT NULL,
image_path text DEFAULT NULL,
image_url text DEFAULT NULL,
source_url text DEFAULT NULL,
status varchar(50) NOT NULL DEFAULT 'pending',
error_message text DEFAULT NULL,
accepted_by bigint(20) UNSIGNED DEFAULT NULL,
accepted_at datetime DEFAULT NULL,
order_id bigint(20) UNSIGNED DEFAULT NULL,
order_created_at datetime DEFAULT NULL,
submitted_at datetime NOT NULL,
created_at datetime NOT NULL,
updated_at datetime DEFAULT NULL,
PRIMARY KEY (id),
KEY chat_id (chat_id),
KEY user_id (user_id),
KEY status (status),
KEY accepted_by (accepted_by),
KEY order_id (order_id),
KEY location_received_at (location_received_at),
KEY submitted_at (submitted_at),
KEY message_id (message_id),
KEY media_id (media_id)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
Marinda 6 X 2L