Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/sqlite_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def maybe_create_table(sqlite_file: str) -> bool:
"""
create_pastes_table_query = """
CREATE TABLE IF NOT EXISTS pastes (
paste_id TEXT PRIMARY KEY,
id TEXT PRIMARY KEY,
title TEXT,
created_at DATETIME DEFAULT CURRENT_DATE,
deleted_at DATETIME DEFAULT NULL,
Expand Down
Loading