How do you pass a "IF NOT EXISTS" option to create() so that the create() function creates the table only if it doesn't exist?
SOLVED: try db.run(users.create(ifNotExists: true) { t in /* ... */ })
Most helpful comment
SOLVED:
try db.run(users.create(ifNotExists: true) { t in /* ... */ })