this is what happens when i try to activate sharing_two
A database error occurred while performing the requested procedure. Please review the database error below for more information.
system/libraries/drivers/Database/Mysql.php [367]:
Database error: Unknown column ‘sharing_incident.incident_description’ in ‘field list’ - CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=CURRENT_USER SQL SECURITY INVOKER VIEW sharing_combined_incident
AS SELECT incident
.id
AS id
, incident
.incident_title
AS incident_title
, incident
.incident_description
AS incident_description
, incident
.incident_date
AS incident_date
, incident
.incident_mode
AS incident_mode
, incident
.location_id
AS location_id
, incident
.incident_active
AS incident_active
, incident
.incident_verified
AS incident_verified
, ‘main’ AS source
, NULL AS source_url
FROM incident
UNION SELECT sharing_incident
.id
AS id
, sharing_incident
.incident_title
AS incident_title
, sharing_incident
.incident_description
AS incident_description
, sharing_incident
.incident_date
AS incident_date
, sharing_incident
.incident_mode
AS incident_mode
, sharing_incident
.location_id
AS location_id
, sharing_incident
.incident_active
AS incident_active
, sharing_incident
.incident_verified
AS incident_verified
, sharing_incident
.sharing_site_id
AS source
, sharing_site
.site_url
AS source_url
FROM sharing_incident
LEFT JOIN sharing_site
ON (sharing_incident
.sharing_site_id
= sharing_site
.id
)