Skip to content

Commit

Permalink
fix: downgrade SQLite due to issues with Exposed
Browse files Browse the repository at this point in the history
  • Loading branch information
GiantTreeLP committed Jan 19, 2024
1 parent 6612dc9 commit f913ccd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {

val exposedVersion = "0.46.0"
val hikariVersion = "5.1.0"
val sqliteVersion = "3.45.0.0"
val sqliteVersion = "3.44.1.0"
val mariadbVersion = "3.3.2"

val junitVersion = "5.10.1"
Expand Down
7 changes: 4 additions & 3 deletions src/main/kotlin/de/gianttree/discord/w2g/database/guild.kt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package de.gianttree.discord.w2g.database

import de.gianttree.discord.w2g.database.Guilds.active
import dev.kord.common.entity.Snowflake
import kotlinx.datetime.Clock
import org.jetbrains.exposed.dao.id.EntityID
import org.jetbrains.exposed.sql.*
import org.jetbrains.exposed.sql.SqlExpressionBuilder.eq
import org.jetbrains.exposed.sql.and
import org.jetbrains.exposed.sql.min
import org.jetbrains.exposed.sql.selectAll
import org.jetbrains.exposed.sql.sum
import dev.kord.core.entity.Guild as KordGuild


Expand Down

0 comments on commit f913ccd

Please sign in to comment.