only mysql8

! atlas migrate lint --dir file://migrations1 --dev-url URL --latest=2 > got.txt
cmp got.txt expected1.txt

-- migrations1/1.sql --
CREATE TABLE node (next int REFERENCES node(next));
CREATE TABLE tree (id int);

-- migrations1/2.sql --
ALTER TABLE tree ADD COLUMN l int REFERENCES tree(id), ADD COLUMN r int REFERENCES tree(id);

-- expected1.txt --
1.sql: inline REFERENCES detected:

	L1: Defining column "next" on table "node" with inline REFERENCES is ignored by MySQL

2.sql: inline REFERENCES detected:

	L1: Defining column "l" on table "tree" with inline REFERENCES is ignored by MySQL
	L1: Defining column "r" on table "tree" with inline REFERENCES is ignored by MySQL

