Files
notifications-api/app
Leo Hemsted 93e631221a use dates rather than datetimes when comparing with bst_date
bst_date is a date field. Comparing dates with datetimes in postgres
gets confusing and dangerous. See this example, where a date evaluates
as older than midnight that same day.

```
notification_api=# select '2019-04-01' >= '2019-04-01 00:00';
 ?column?
----------
 f
(1 row)
```

By only using dates everywhere, we reduce the chance of these bugs
happening
2019-09-02 11:56:56 +01:00
..
2019-08-12 10:54:11 +01:00
2019-08-19 14:51:21 +01:00
2019-08-30 16:49:58 +01:00
2019-08-21 11:15:49 +01:00