Skip to content

Instantly share code, notes, and snippets.

@tolmachevroman
Last active November 26, 2017 05:11
Show Gist options
  • Save tolmachevroman/2ffaefb4286963d75553a108ac2b4a4b to your computer and use it in GitHub Desktop.
Save tolmachevroman/2ffaefb4286963d75553a108ac2b4a4b to your computer and use it in GitHub Desktop.
Medium Post 1. Database
@Database(entities = arrayOf(Restaurant::class), version = 1)
abstract class Database : RoomDatabase() {
abstract fun restaurantsDao(): RestaurantsDao
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment