14 lines
265 B
Kotlin
14 lines
265 B
Kotlin
package exh.savedsearches.tables
|
|
|
|
object FeedSavedSearchTable {
|
|
|
|
const val TABLE = "feed_saved_search"
|
|
|
|
const val COL_ID = "_id"
|
|
|
|
const val COL_SOURCE = "source"
|
|
|
|
const val COL_SAVED_SEARCH_ID = "saved_search"
|
|
|
|
const val COL_GLOBAL = "global"
|
|
}
|