<@U0H8MJ868> on the JVM part of the readme there's...
# squarelibraries
c
@alec on the JVM part of the readme there's this code:
Copy code
val driver: SqlDriver = JdbcSqliteDriver()
Database.Schema.create(driver)
but if you don't put a name inside the driver the db is "in memory" (or at least that's my conclusion). So using
JdbcSqliteDriver("jdbc:sqlite:mydatabase.db")
will work and persist the db after app restart