Created
April 29, 2019 19:37
-
-
Save Opalo/9e7fcbc5b05897706d22d67d133d2149 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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