43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
|
|
package database
|
|
|
|
import (
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Album struct {
|
|
ID pgtype.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
Artist string `json:"artist"`
|
|
ReleaseDate pgtype.Date `json:"release_date"`
|
|
AlbumArtUrl pgtype.Text `json:"album_art_url"`
|
|
}
|
|
|
|
type Artist struct {
|
|
ID pgtype.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
Genre pgtype.Text `json:"genre"`
|
|
Bio pgtype.Text `json:"bio"`
|
|
ArtistImageUrl pgtype.Text `json:"artist_image_url"`
|
|
}
|
|
|
|
type User struct {
|
|
ID pgtype.UUID `json:"id"`
|
|
UserName string `json:"user_name"`
|
|
UserMail string `json:"user_mail"`
|
|
Password string `json:"password"`
|
|
CreatedAt pgtype.Timestamp `json:"created_at"`
|
|
}
|
|
|
|
type UserAlbum struct {
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
AlbumID pgtype.UUID `json:"album_id"`
|
|
AlbumOwned bool `json:"album_owned"`
|
|
AlbumWant bool `json:"album_want"`
|
|
IsVinyl bool `json:"is_vinyl"`
|
|
IsCd bool `json:"is_cd"`
|
|
}
|