Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #36 from Z-Jais/master
Browse files Browse the repository at this point in the history
Update and fix
  • Loading branch information
Ziedelth authored Nov 11, 2022
2 parents c2681fc + e8d0b85 commit c9c95fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<properties>
<ktor_version>2.1.3</ktor_version>
<kotlin.code.style>official</kotlin.code.style>
<kotlin_version>1.7.20</kotlin_version>
<kotlin_version>1.7.21</kotlin_version>
<kotlin.compiler.jvmTarget>11</kotlin.compiler.jvmTarget>
<logback_version>1.4.4</logback_version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -115,7 +115,7 @@
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-admin</artifactId>
<version>9.1.0</version>
<version>9.1.1</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/fr/ziedelth/entities/Episode.kt
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ data class Episode(
val number: Int? = null,
@Column(nullable = true)
val title: String? = null,
@Column(nullable = false)
@Column(nullable = false, columnDefinition = "TEXT")
val url: String? = null,
@Column(nullable = false)
@Column(nullable = false, columnDefinition = "TEXT")
val image: String? = null,
@Column(nullable = false)
val duration: Long = -1
Expand Down

0 comments on commit c9c95fd

Please sign in to comment.