app/src/main/java/com/example/firstapp/database/entity/Reminder.kt
@@ -3,11 +3,13 @@ import androidx.room.Entity import androidx.room.PrimaryKey @Entity(tableName = "reminders") data class Reminder( @PrimaryKey(autoGenerate = true) val id: Long = 0, val type: String, val nickname: String, val keywords: String @PrimaryKey(autoGenerate = true) val id: Long = 0, val categoryId: Int, val categoryName: String, val notificationMethod: String, val isEnabled: Boolean = true, val createdAt: Long = System.currentTimeMillis() )