place genus is place. oops. and here comes time.
This commit is contained in:
parent
bb52c24c31
commit
035822f3f2
|
@ -16,14 +16,14 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"database/sql"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"log"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
|
||||
"humungus.tedunangst.com/r/webs/login"
|
||||
)
|
||||
|
@ -335,7 +335,7 @@ func saveextras(h *Honk) error {
|
|||
if p := h.Place; p != nil {
|
||||
j, err := jsonify(p)
|
||||
if err != nil {
|
||||
_, err = stmtSaveMeta.Exec(h.ID, "genus", j)
|
||||
_, err = stmtSaveMeta.Exec(h.ID, "place", j)
|
||||
}
|
||||
if err != nil {
|
||||
log.Printf("error saving place: %s", err)
|
||||
|
|
7
honk.go
7
honk.go
|
@ -62,6 +62,7 @@ type Honk struct {
|
|||
Donks []*Donk
|
||||
Onts []string
|
||||
Place *Place
|
||||
Time *Time
|
||||
}
|
||||
|
||||
type OldRevision struct {
|
||||
|
@ -100,6 +101,12 @@ type Place struct {
|
|||
Url string
|
||||
}
|
||||
|
||||
type Time struct {
|
||||
StartTime time.Time
|
||||
EndTime time.Time
|
||||
Duration time.Duration
|
||||
}
|
||||
|
||||
type Honker struct {
|
||||
ID int64
|
||||
UserID int64
|
||||
|
|
Loading…
Reference in New Issue