mirror of
https://github.com/lnbits/lnbits.git
synced 2025-04-06 10:58:30 +02:00
fixup!
This commit is contained in:
parent
542e667136
commit
6d6a71a269
10
lnbits/db.py
10
lnbits/db.py
@ -159,16 +159,14 @@ class Connection(Compat):
|
||||
return row
|
||||
|
||||
async def update(self, table_name: str, model: BaseModel, where: str = "id = :id"):
|
||||
result = await self.conn.execute(
|
||||
await self.conn.execute(
|
||||
text(update_query(table_name, model, where)), model.dict()
|
||||
)
|
||||
result.close()
|
||||
await self.conn.commit()
|
||||
|
||||
async def insert(self, table_name: str, model: BaseModel):
|
||||
result = await self.conn.execute(
|
||||
text(insert_query(table_name, model)), model.dict()
|
||||
)
|
||||
result.close()
|
||||
await self.conn.execute(text(insert_query(table_name, model)), model.dict())
|
||||
await self.conn.commit()
|
||||
|
||||
async def fetch_page(
|
||||
self,
|
||||
|
Loading…
x
Reference in New Issue
Block a user