Created
August 6, 2022 12:04
-
-
Save krzdabrowski/8aede37dfdd14bb55737d80dac53c89d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private const val DATABASE_VERSION = 1 | |
@Database( | |
entities = [RocketCached::class], | |
version = DATABASE_VERSION | |
) | |
abstract class AppDatabase : RoomDatabase() { | |
abstract fun rocketDao(): RocketDao | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment