Need to create the `notifications.db` table and store data related. We can implement a schema like, ``` rs struct notiifications { id: u32, notification_type: String, created_when: Datetime } ```
Need to create the
notifications.dbtable and store data related.We can implement a schema like,