Skip to content
Snippets Groups Projects
Unverified Commit 2cc621ed authored by akwizgran's avatar akwizgran
Browse files

Bumped DB schema version.

Prevent old forum sharing messages from causing spurious exceptions.
parent 0b348653
No related branches found
No related tags found
No related merge requests found
......@@ -63,8 +63,8 @@ import static org.briarproject.db.ExponentialBackoff.calculateExpiry;
*/
abstract class JdbcDatabase implements Database<Connection> {
private static final int SCHEMA_VERSION = 23;
private static final int MIN_SCHEMA_VERSION = 23;
private static final int SCHEMA_VERSION = 24;
private static final int MIN_SCHEMA_VERSION = 24;
private static final String CREATE_SETTINGS =
"CREATE TABLE settings"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment