-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Missing LF at the end of critical files
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ CREATE TABLE proteus_identities ( | |
CREATE TABLE proteus_sessions ( | ||
id VARCHAR(255) UNIQUE, | ||
session BLOB | ||
); | ||
); |
2 changes: 1 addition & 1 deletion
2
keystore/src/connection/platform/generic/migrations/V3__parentgroups.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
ALTER TABLE mls_groups ADD COLUMN parent_id BLOB; | ||
ALTER TABLE mls_pending_groups ADD COLUMN parent_id BLOB; | ||
ALTER TABLE mls_pending_groups ADD COLUMN parent_id BLOB; |
2 changes: 1 addition & 1 deletion
2
keystore/src/connection/platform/generic/migrations/V4__e2ei.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CREATE TABLE e2ei_enrollment ( | ||
id VARCHAR(255) UNIQUE, | ||
content BLOB | ||
); | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,4 +32,4 @@ CREATE TABLE mls_psk_bundles ( | |
CREATE TABLE mls_keypackages ( | ||
keypackage_ref BLOB, | ||
keypackage BLOB | ||
); | ||
); |