diff options
| author | user@node5.net <user@node5.net> | 2025-07-19 15:18:18 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2025-07-19 15:18:18 +0200 |
| commit | ddcc24426fbc870d1017d1cf2cf7636936845d18 (patch) | |
| tree | 4d814bdccc91641c5abd7e5c24f57f75da2c5cd1 /create_db.sql | |
| parent | f9b719c1cf6a8a92748d0977fce0f3704f74bca3 (diff) | |
SQLite fix create, remove config
Diffstat (limited to 'create_db.sql')
| -rw-r--r-- | create_db.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/create_db.sql b/create_db.sql index 638932c..ee0f968 100644 --- a/create_db.sql +++ b/create_db.sql @@ -1,5 +1,5 @@ CREATE TABLE comment ( - id serial PRIMARY KEY, + id INTEGER PRIMARY KEY AUTOINCREMENT, comment text NOT NULL, -- URL of the page the comment belongs to, this is the relation between the markdown and this database page_url text, visitor_url text, -- The website the user claims to be from, if they have their own self hosted website |
