diff options
author | David Baker <dave@matrix.org> | 2016-01-04 14:05:37 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-01-04 14:05:37 +0000 |
commit | c914d67cda9682331639b78190db367974e4fb8b (patch) | |
tree | f0e72e559a381512d56c5027bcfeef19e80f8859 /synapse/storage/schema | |
parent | Merge remote-tracking branch 'origin/develop' into store_event_actions (diff) | |
download | synapse-c914d67cda9682331639b78190db367974e4fb8b.tar.xz |
Rename event-actions to event_push_actions as per PR request
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/delta/27/event_push_actions.sql (renamed from synapse/storage/schema/delta/27/event_actions.sql) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/schema/delta/27/event_actions.sql b/synapse/storage/schema/delta/27/event_push_actions.sql index bbdaee990e..bdf6ae3f24 100644 --- a/synapse/storage/schema/delta/27/event_actions.sql +++ b/synapse/storage/schema/delta/27/event_push_actions.sql @@ -13,7 +13,7 @@ * limitations under the License. */ -CREATE TABLE IF NOT EXISTS event_actions( +CREATE TABLE IF NOT EXISTS event_push_actions( room_id TEXT NOT NULL, event_id TEXT NOT NULL, user_id TEXT NOT NULL, @@ -23,4 +23,4 @@ CREATE TABLE IF NOT EXISTS event_actions( ); -CREATE INDEX event_actions_room_id_event_id_user_id_profile_tag on event_actions(room_id, event_id, user_id, profile_tag); +CREATE INDEX event_push_actions_room_id_event_id_user_id_profile_tag on event_push_actions(room_id, event_id, user_id, profile_tag); |