What i just is that you need to separate the Create and Drop commands.
First try to Drop the table using
await db.execAsync(`DROP TABLE IF EXISTS users;`);
Then run the remaining to create the Table. It seems that Drop command is not working well inside this block of code.