Skip to content

Commit a8c0ad5

Browse files
committed
Fix another typo in sql store upgrade
1 parent 6acd0be commit a8c0ad5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mautrix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.20.9rc2"
1+
__version__ = "0.20.9rc3"
22
__author__ = "Tulir Asokan <[email protected]>"
33
__all__ = [
44
"api",

mautrix/client/state_store/asyncpg/upgrade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ async def upgrade_v3(conn: Connection) -> None:
7474

7575
@upgrade_table.register(description="Add create event to room state cache")
7676
async def upgrade_v4(conn: Connection) -> None:
77-
await conn.execute("ALTER TABLE mx_room_state ADD COLUMN create_event TYPE TEXT")
77+
await conn.execute("ALTER TABLE mx_room_state ADD COLUMN create_event TEXT")

0 commit comments

Comments
 (0)