Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
briar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
681
Issues
681
List
Boards
Labels
Service Desk
Milestones
Merge Requests
16
Merge Requests
16
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
briar
briar
Commits
84f2c29c
Verified
Commit
84f2c29c
authored
Apr 22, 2019
by
akwizgran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary call to replaceTypes().
parent
56fb20f2
Pipeline
#3214
passed with stage
in 9 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bramble-core/src/main/java/org/briarproject/bramble/db/Migration42_43.java
...main/java/org/briarproject/bramble/db/Migration42_43.java
+2
-2
No files found.
bramble-core/src/main/java/org/briarproject/bramble/db/Migration42_43.java
View file @
84f2c29c
...
...
@@ -42,8 +42,8 @@ class Migration42_43 implements Migration<Connection> {
+
" ADD COLUMN handshakePrivateKey _BINARY"
));
s
.
execute
(
dbTypes
.
replaceTypes
(
"ALTER TABLE contacts"
+
" ADD COLUMN handshakePublicKey _BINARY"
));
s
.
execute
(
dbTypes
.
replaceTypes
(
"ALTER TABLE contacts"
+
" DROP COLUMN active"
)
)
;
s
.
execute
(
"ALTER TABLE contacts"
+
" DROP COLUMN active"
);
}
catch
(
SQLException
e
)
{
tryToClose
(
s
,
LOG
,
WARNING
);
throw
new
DbException
(
e
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment