c9ec7921a5
This reverts commit 6a0b523e86.
14 lines
238 B
Kotlin
Executable File
14 lines
238 B
Kotlin
Executable File
package exh.metadata.sql.tables
|
|
|
|
object SearchTitleTable {
|
|
const val TABLE = "search_titles"
|
|
|
|
const val COL_ID = "_id"
|
|
|
|
const val COL_MANGA_ID = "manga_id"
|
|
|
|
const val COL_TITLE = "title"
|
|
|
|
const val COL_TYPE = "type"
|
|
}
|