How to Set PRAGMA foreign_keys = ON in SQLite via DataGrip

datagripsqlite

In my pet project I'm working with small sqlite db and I've just came to realization that, in order to ON DELETE CASCADE actually do the thing, I need to set PRAGMA foreign_keys = ON each time I'm connecting to db.

However I'm using Datagrip and since it's quite new product to me I don't what's the best way to set this option every time.

Best Answer

Please, go the SQLite driver options, Advanced tab and set true to foreign_keys parameter.

enter image description here