Skip to content

Commit

Permalink
Removed unused create table, refs #17
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Mar 13, 2024
1 parent de32d79 commit bfedc84
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions datasette_extract/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,6 @@
import ulid


CREATE_JOB_TABLE_SQL = """
create table if not exists _extract_jobs (
id integer primary key,
database_name text,
table_name text,
content text,
custom_prompt text, -- for custom system prompt
properties text, -- JSON function properties definition
started_at text, -- ISO8601 when added
finished_at text, -- ISO8601 when completed or cancelled
row_count integer, -- starts at 0
error text
);
"""


@hookimpl
def register_permissions(datasette):
return [
Expand Down

0 comments on commit bfedc84

Please sign in to comment.