mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-12 15:24:33 -05:00
Fix/m0045 prevent duplicated chapter pages migration (#1361)
* Fix "imageUrl" column name in migration * Rename column "imageUrl" to "IMAGE_URL" of table "Page"
This commit is contained in:
@@ -13,7 +13,7 @@ import org.jetbrains.exposed.sql.ReferenceOption
|
||||
object PageTable : IntIdTable() {
|
||||
val index = integer("index")
|
||||
val url = varchar("url", 2048)
|
||||
val imageUrl = varchar("imageUrl", 2048).nullable()
|
||||
val imageUrl = varchar("image_url", 2048).nullable()
|
||||
|
||||
val chapter = reference("chapter", ChapterTable, ReferenceOption.CASCADE)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user