Skip to content

Instantly share code, notes, and snippets.

@Opalo
Created April 29, 2019 19:37
Show Gist options
  • Save Opalo/9e7fcbc5b05897706d22d67d133d2149 to your computer and use it in GitHub Desktop.
Save Opalo/9e7fcbc5b05897706d22d67d133d2149 to your computer and use it in GitHub Desktop.
package org.opal.db
object SchemaGenerator extends App {
slick.codegen.SourceCodeGenerator.main(
Array(
"slick.jdbc.MySQLProfile",
"com.mysql.cj.jdbc.Driver",
"jdbc:mysql://localhost:3306/test",
"src/main/scala",
"org.opal.db.model",
"test",
"test",
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment