Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
b0f71db3
Commit
b0f71db3
authored
9 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Remove unsigned
parent
84e1cace
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/storage/schema/delta/18/server_keys_bigger_ints.sql
+2
-2
2 additions, 2 deletions
synapse/storage/schema/delta/18/server_keys_bigger_ints.sql
with
2 additions
and
2 deletions
synapse/storage/schema/delta/18/server_keys_bigger_ints.sql
+
2
−
2
View file @
b0f71db3
...
...
@@ -18,8 +18,8 @@ CREATE TABLE IF NOT EXISTS new_server_keys_json (
server_name
TEXT
NOT
NULL
,
-- Server name.
key_id
TEXT
NOT
NULL
,
-- Requested key id.
from_server
TEXT
NOT
NULL
,
-- Which server the keys were fetched from.
ts_added_ms
BIGINT
UNSIGNED
NOT
NULL
,
-- When the keys were fetched
ts_valid_until_ms
BIGINT
UNSIGNED
NOT
NULL
,
-- When this version of the keys exipires.
ts_added_ms
BIGINT
NOT
NULL
,
-- When the keys were fetched
ts_valid_until_ms
BIGINT
NOT
NULL
,
-- When this version of the keys exipires.
key_json
bytea
NOT
NULL
,
-- JSON certificate for the remote server.
CONSTRAINT
uniqueness
UNIQUE
(
server_name
,
key_id
,
from_server
)
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment