-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Conversation
Signed-off-by: Aaron Raimist <[email protected]>
Signed-off-by: Aaron Raimist <[email protected]>
Codecov Report
@@ Coverage Diff @@
## develop #4244 +/- ##
===========================================
- Coverage 73.55% 73.54% -0.01%
===========================================
Files 299 298 -1
Lines 29806 29796 -10
Branches 4872 4871 -1
===========================================
- Hits 21923 21913 -10
+ Misses 6456 6453 -3
- Partials 1427 1430 +3
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup so this lgtm. I've added a few notes below for future reference but none of them are big enough concerns for me to hold this back.
@@ -25,7 +25,7 @@ | |||
|
|||
# Remember to update this number every time a change is made to database | |||
# schema files, so the users will be informed on server restarts. | |||
SCHEMA_VERSION = 52 | |||
SCHEMA_VERSION = 53 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not always necessary to bump this - you can just keep adding more delta files into the current delta directory.
@@ -1,4 +1,4 @@ | |||
/* Copyright 2015, 2016 OpenMarket Ltd | |||
/* Copyright 2018 New Vector Ltd |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New Vector didn't write it, so this isn't really true.
You wrote it (all six words of it), so it's copyright yourself (with a license for us to use it via the DCO), either implicitly or explicitly. So either: Copyright 2018 Aaron Raimist
, or just omit it.
DROP TABLE IF EXISTS sent_transactions; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be useful to have a comment here explaining why this is a useful thing to do and some of the history
(thanks!) |
Fixes #2930 (maybe, I have no idea what I'm doing 😅)