How do you check if a table exists with slick 3.0?
There was a way in previous versions of slick by using:
MTable.getTables.list()
But this doesn't compile anymore.
The idea behind this question is to dynamically create a table when it doesn't exists, pretty much like this:
if (Tables.contains("USERS") == false)
Users.createTable()