diff --git a/sage_validation/file_validator/models.py b/sage_validation/file_validator/models.py
index 99c2e0f7485ede4bea0112eb3bac3b46630f1676..c2bd157589984bc6b80d66d8a0bc69b9e9d70ba4 100644
--- a/sage_validation/file_validator/models.py
+++ b/sage_validation/file_validator/models.py
@@ -38,6 +38,7 @@ class MeoNominal(models.Model):
 class MeoValidSageAccounts(models.Model):
     """View for MEO valid Sage accounts."""
 
+    id = models.UUIDField(db_column="ID", primary_key=True)
     account_name = models.CharField(db_column="AccountName", max_length=60)
     account_number = models.CharField(db_column="AccountNumber", max_length=8, blank=True, null=True)
     account_cost_centre = models.CharField(db_column="AccountCostCentre", max_length=3, blank=True, null=True)