test
This commit is contained in:
parent
15c6db20b3
commit
4b45532a59
16
db.py
16
db.py
@ -247,7 +247,9 @@ def del_image_allocation(sql, value):
|
|||||||
|
|
||||||
|
|
||||||
def del_image_allocation_id_image(image_id):
|
def del_image_allocation_id_image(image_id):
|
||||||
return del_image_allocation("DELETE FROM image_allocation WHERE image_id = %s", image_id)
|
delete = del_image_allocation("DELETE FROM image_allocation WHERE image_id = %s", image_id)
|
||||||
|
print(delete)
|
||||||
|
return delete
|
||||||
|
|
||||||
|
|
||||||
def del_image_allocation_id(id):
|
def del_image_allocation_id(id):
|
||||||
@ -265,3 +267,15 @@ def update_image_allocation_time(id):
|
|||||||
return True
|
return True
|
||||||
except:
|
except:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
def update_image_allocation_ip(id, ip):
|
||||||
|
connect()
|
||||||
|
with get_cur() as cur:
|
||||||
|
cur.execute("""
|
||||||
|
UPDATE image_allocation SET ip = %s WHERE id = %s
|
||||||
|
""", (ip, id,))
|
||||||
|
try:
|
||||||
|
conn.commit()
|
||||||
|
return True
|
||||||
|
except:
|
||||||
|
return None
|
Loading…
Reference in New Issue
Block a user