Combined patches from RT#70734 and RT#44769
[dbsrgits/SQL-Translator.git] / t / 30sqlt-new-diff-sqlite.t
index 4503d6e..c6b4b92 100644 (file)
@@ -99,7 +99,7 @@ CREATE TEMPORARY TABLE 'employee_temp_alter' (
   'position' varchar(50) NOT NULL,
   'employee_id' int(11) NOT NULL,
   PRIMARY KEY ('position', 'employee_id'),
-  FOREIGN KEY('employee_id') REFERENCES 'person'('person_id')
+  FOREIGN KEY ('employee_id') REFERENCES 'person'('person_id')
 );
 
 INSERT INTO 'employee_temp_alter' SELECT 'position', 'employee_id' FROM 'employee';
@@ -110,7 +110,7 @@ CREATE TABLE 'employee' (
   'position' varchar(50) NOT NULL,
   'employee_id' int(11) NOT NULL,
   PRIMARY KEY ('position', 'employee_id'),
-  FOREIGN KEY('employee_id') REFERENCES 'person'('person_id')
+  FOREIGN KEY ('employee_id') REFERENCES 'person'('person_id')
 );
 
 INSERT INTO 'employee' SELECT 'position', 'employee_id' FROM 'employee_temp_alter';