place genus is place. oops. and here comes time.

Ted Unangst 5 years ago
parent 28f5062838
commit 3f81ee331f

@ -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)

@ -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…
Cancel
Save