I searched for similar questions but all I got is "CREATE TABLE IF NOT EXISTS".
That's not what I want at all! I only want to check whether the 5 needed tables exist or not, creating them is an entirely different thing.
Meaning I just want the "IF NOT EXISTS" part, without the "CREATE TABLE". Is there anyway to do it with Idiorm?
P/S: if possible, please write the entire code line (for example ORM::raw_execute('query') or something). I have almost no experience working with database queries :( )