Files
notifications-api/tests/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-06-03 17:27:08 +01:00
2019-07-04 14:12:11 +01:00
2019-08-13 17:20:37 +01:00
2019-04-26 10:49:25 +01:00
2019-07-26 13:26:20 +01:00
2019-07-18 17:05:22 +01:00
2019-08-30 12:17:59 +01:00
2019-08-15 16:42:15 +01:00
2019-04-12 10:26:46 +01:00