CREATE TABLE IF NOT EXISTS db_table
Non hai specificato alcuna colonna, che è esattamente ciò che ti ha detto il messaggio di errore. La sintassi corretta è
CREATE TABLE IF NOT EXISTS db_table (
column_name1 datatype,
column_name2 datatype,
etc.
)