/ktor-exposed

Ktor Exposed database feature.

Primary LanguageHTML

ktor-exposed

Ktor Exposed database feature.

    install(Exposed) {
        connectWithConfig(DatabaseConfiguration(
            "jdbc:mysql://localhost:3306/<database_name_here>",
            "com.mysql.jdbc.Driver",
            "username",
            "password"
        ))

        createSchemas(
            Users
        )
    }