app/src/main/java/com/geekorum/ttrss/data/ArticlesDatabase.kt
author Da Risk <da_risk@geekorum.com>
Wed, 12 Jan 2022 17:29:59 -0400
changeset 882 7a74abf66c49
parent 846 ac0863af5ef6
child 933 f6af10dfeb75
permissions -rw-r--r--
update license headers

/*
 * Geekttrss is a RSS feed reader application on the Android Platform.
 *
 * Copyright (C) 2017-2022 by Frederic-Charles Barthelery.
 *
 * This file is part of Geekttrss.
 *
 * Geekttrss is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Geekttrss is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Geekttrss.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.geekorum.ttrss.data

import androidx.room.Database
import androidx.room.RoomDatabase
import com.geekorum.ttrss.providers.PurgeArticlesDao

@Database(entities = [Article::class, ArticleFTS::class, ArticlesTags::class, Attachment::class,
    Category::class, Feed::class, Transaction::class, AccountInfo::class],
        version = 13)
abstract class ArticlesDatabase : RoomDatabase() {
    abstract fun articleDao(): ArticleDao
    abstract fun accountInfoDao(): AccountInfoDao
    abstract fun transactionsDao(): TransactionsDao
    abstract fun synchronizationDao(): SynchronizationDao
    abstract fun articlesProvidersDao(): PurgeArticlesDao
    abstract fun feedsDao(): FeedsDao
    abstract fun manageFeedsDao(): ManageFeedsDao

    companion object {
        const val DATABASE_NAME = "room_articles.db"
    }

    object Tables {
        const val ARTICLES = "articles"
        const val TRANSACTIONS = "transactions"
        const val FEEDS = "feeds"
        const val CATEGORIES = "categories"
        const val ARTICLES_TAGS = "articles_tags"
    }
}