feat: support lud-11 disposable links (#95)

This commit is contained in:
dni ⚡ 2025-08-14 12:16:16 +02:00 committed by GitHub
commit 3dc1e86d8c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 29 additions and 4 deletions

View file

@ -212,3 +212,9 @@ async def m011_add_created_at(db: Connection):
""",
{"now": now},
)
async def m012_add_disposable(db: Connection):
await db.execute(
"ALTER TABLE lnurlp.pay_links ADD COLUMN disposable BOOLEAN DEFAULT TRUE"
)