mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-11-25 02:26:37 +00:00
10 lines
215 B
Python
10 lines
215 B
Python
JOB_INSERT_QUERY = """
|
|
INSERT INTO jobs
|
|
(id, url, elements, user, time_created, result, status, chat, job_options)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
|
|
"""
|
|
|
|
DELETE_JOB_QUERY = """
|
|
DELETE FROM jobs WHERE id IN ()
|
|
"""
|