added back the id for the db rows

This commit is contained in:
TheLastBilly 2023-05-19 04:02:47 -04:00
parent 2bc75ecc2c
commit 81bc211907
1 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,7 @@ var mediaPath *string = nil
var templatesPath *string = nil var templatesPath *string = nil
type Comic struct { type Comic struct {
ID int
DateTime string DateTime string
Title string Title string
Image string Image string
@ -52,6 +53,7 @@ func getComic(id int) (*Comic, error) {
const dbSquema string = ` const dbSquema string = `
CREATE TABLE IF NOT EXISTS comic ( CREATE TABLE IF NOT EXISTS comic (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
datetime DATETIME DEFAULT CURRENT_TIMESTAMP, datetime DATETIME DEFAULT CURRENT_TIMESTAMP,
title CHAR(50), title CHAR(50),
image CHAR(200), image CHAR(200),
@ -122,7 +124,7 @@ func comicView(w http.ResponseWriter, r * http.Request) {
Title: "Black Ram Comics", Title: "Black Ram Comics",
} }
i := 1 i := 0
if len(path) > 0{ if len(path) > 0{
i, err = strconv.Atoi(path) i, err = strconv.Atoi(path)
if err != nil { if err != nil {