This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
drop tables listed in #1830 #4992
Merged
Merged
Changes from 24 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
7adb9d0
first draft of remove presence lists
neilisfragile 402d6e8
towncrier
neilisfragile ded3368
remove unused import
neilisfragile 18488b0
delete all the things
neilisfragile 0546e86
pep8
neilisfragile 2a46f3a
delete
neilisfragile fde8ce6
include msc ref
neilisfragile aec4871
drop presence list table
neilisfragile 5c7e783
delete
neilisfragile bacc037
town crier
neilisfragile fcae26e
.
neilisfragile 11076bd
drop legacy tables via delta
neilisfragile 2aec358
Merge branch 'develop' into neilj/drop_tables_in_1830
neilisfragile aeb6596
remove unused legacy tables
neilisfragile 40340f4
Merge branch 'develop' of github.com:matrix-org/synapse into neilj/dr…
neilisfragile 25744a1
fix drop tables, and bump schema version
neilisfragile 1d39449
move to delta 55
neilisfragile 54c6d6d
54->55
neilisfragile 01b270e
55->54
neilisfragile 9f747e8
55->54
neilisfragile 8dcc771
55->54
neilisfragile 7687d76
Since the dir has to exist, a file explaining why
neilisfragile c0b4a2d
app_services and app_servives_regex
neilisfragile 3f0f7da
no longer used
neilisfragile bfbb541
fix typo
neilisfragile 74e809a
remove old schema data
neilisfragile 8b83064
Revert "remove old schema data"
neilisfragile 41121e4
revert delta removal
neilisfragile File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Remove legacy tables detailed in #1830. |
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* Copyright 2019 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
DROP TABLE IF EXISTS application_services; | ||
DROP TABLE IF EXISTS application_services_regex; | ||
DROP TABLE IF EXISTS transaction_id_to_pdu; | ||
DROP TABLE IF EXISTS stats_reporting; | ||
DROP TABLE IF EXISTS current_state_resets; | ||
DROP TABLE IF EXISTS event_content_hashes; | ||
DROP TABLE IF EXISTS event_destinations; | ||
DROP TABLE IF EXISTS event_edge_hashes; | ||
DROP TABLE IF EXISTS event_signatures; | ||
DROP TABLE IF EXISTS feedback; | ||
DROP TABLE IF EXISTS room_hosts; | ||
DROP TABLE IF EXISTS state_forward_extremities; | ||
|
||
|
||
|
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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.
likewise in a number of other places