andylamax
09/02/2025, 1:57 PMCREATE TABLE IF NOT EXISTS ow_core_people(
uid INTEGER PRIMARY KEY NOT NULL AUTO_INCREMENT,
name TEXT NOT NULL,
photo TEXT
);
Because AUTO_INCREMENT doesn't work on SQLite, it just works on MySQL but fails on SQLite.
Is there a way for SQLDelight to support these multiple syntax and transform them in accordance to the dialect selected?