Closed Mijyuoon closed 7 years ago
Migration runner fails with SQL syntax error when SQLite is used as target DB platform.
The problem is because of this code. It uses SELECT _ FOR UPDATE statement that SQLite does not support.
SELECT _ FOR UPDATE
I believe simply replacing it with normal SELECT when SQLite is used should work without causing any problems.
SELECT
Fixed. So with SQLite we won't have locking on the migration table.
Migration runner fails with SQL syntax error when SQLite is used as target DB platform.
The problem is because of this code. It uses
SELECT _ FOR UPDATE
statement that SQLite does not support.I believe simply replacing it with normal
SELECT
when SQLite is used should work without causing any problems.