forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
41 lines (34 loc) · 943 Bytes
/
models.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Code generated by sqlc. DO NOT EDIT.
package ondeck
import (
"database/sql"
"time"
)
// Venues can be either open or closed
type Status string
const (
StatusOpen Status = "op!en"
StatusClosed Status = "clo@sed"
)
func (e *Status) Scan(src interface{}) error {
*e = Status(src.([]byte))
return nil
}
type City struct {
Slug string `json:"slug"`
Name string `json:"name"`
}
// Venues are places where muisc happens
type Venue struct {
ID int32 `json:"id"`
Status Status `json:"status"`
Statuses []Status `json:"statuses"`
// This value appears in public URLs
Slug string `json:"slug"`
Name string `json:"name"`
City string `json:"city"`
SpotifyPlaylist string `json:"spotify_playlist"`
SongkickID sql.NullString `json:"songkick_id"`
Tags []string `json:"tags"`
CreatedAt time.Time `json:"created_at"`
}