social media crossposting tool. 3rd time's the charm
mastodon misskey crossposting bluesky

Update 006_add_atproto_tables.py

zenfyr.dev 40c1b721 acff38ee

verified
+1 -7
+1 -7
migrations/006_add_atproto_tables.py
··· 31 31 CREATE INDEX IF NOT EXISTS idx_sessions_pds ON atproto_sessions(pds) 32 32 """) 33 33 _ = conn.execute(""" 34 - CREATE INDEX IF NOT EXISTS idx_sessions_handle ON atproto_sessions(handle) 35 - """) 36 - _ = conn.execute(""" 37 - CREATE INDEX IF NOT EXISTS idx_identities_did ON atproto_identities(did) 38 - """) 39 - _ = conn.execute(""" 40 - CREATE INDEX IF NOT EXISTS idx_identities_handle ON atproto_identities(handle) 34 + CREATE INDEX IF NOT EXISTS idx_identities_created_at ON atproto_identities(created_at) 41 35 """)