From: Ed J Date: Sat, 7 Mar 2020 20:09:54 +0000 (+0000) Subject: whitespace X-Git-Tag: v1.61~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2282f0e27d4b459f2967e272dd114a77e0ea3b10;p=dbsrgits%2FSQL-Translator.git whitespace --- diff --git a/t/data/mysql/create.sql b/t/data/mysql/create.sql index 37a3c85..64ab685 100644 --- a/t/data/mysql/create.sql +++ b/t/data/mysql/create.sql @@ -11,12 +11,12 @@ create table person ( create unique index u_name on person (name); create table employee ( - position varchar(50), - employee_id integer, + position varchar(50), + employee_id integer, job_title varchar(255), - CONSTRAINT FK5302D47D93FE702E FOREIGN KEY (employee_id) REFERENCES person (person_id), - CONSTRAINT `demo_constraint` CHECK (`employee_id` > 0 and `employee_id` IS NOT NULL), - PRIMARY KEY (position, employee_id) USING BTREE + CONSTRAINT FK5302D47D93FE702E FOREIGN KEY (employee_id) REFERENCES person (person_id), + CONSTRAINT `demo_constraint` CHECK (`employee_id` > 0 and `employee_id` IS NOT NULL), + PRIMARY KEY (position, employee_id) USING BTREE ) ENGINE=InnoDB; create table deleted (