From 7ddb82515371f89642f7f5bdc0f4bf06881b3945 Mon Sep 17 00:00:00 2001
From: James Allen <jallen@ebi.ac.uk>
Date: Wed, 24 Oct 2018 10:53:59 +0100
Subject: [PATCH] Add whitespace after name/keyword

---
 sql/table.sql | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sql/table.sql b/sql/table.sql
index 8a5ed59ace..a37606f7d8 100755
--- a/sql/table.sql
+++ b/sql/table.sql
@@ -222,7 +222,7 @@ CREATE TABLE dna (
 */
 
 
-CREATE TABLE genome_statistics(
+CREATE TABLE genome_statistics (
 
   genome_statistics_id     INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
   statistic                VARCHAR(128) NOT NULL,
@@ -1968,7 +1968,7 @@ CREATE TABLE mapping_set (
         internal_schema_build    VARCHAR(20) NOT NULL,
         external_schema_build    VARCHAR(20) NOT NULL,
 
-        PRIMARY KEY(mapping_set_id),
+        PRIMARY KEY (mapping_set_id),
         UNIQUE KEY mapping_idx (internal_schema_build, external_schema_build)
 
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
@@ -2117,7 +2117,7 @@ They are linked to primary external references instead.
 */
 
 
-CREATE TABLE dependent_xref(
+CREATE TABLE dependent_xref (
 
   object_xref_id         INT(10) UNSIGNED NOT NULL,
   master_xref_id         INT(10) UNSIGNED NOT NULL,
-- 
GitLab