32 lines
612 B
Go
32 lines
612 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
|
|
package store
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
type Transaction struct {
|
|
ID int64
|
|
X402TransactionHash string
|
|
Amount string
|
|
Asset string
|
|
Network string
|
|
Recipient string
|
|
Sender string
|
|
CreatedAt sql.NullTime
|
|
}
|
|
|
|
type UserStyleProfile struct {
|
|
ID int64
|
|
UserID string
|
|
Platform string
|
|
Embedding interface{}
|
|
TopKeywords []string
|
|
StyleSummary string
|
|
PostCount int32
|
|
ModifiedAt sql.NullTime
|
|
CreatedAt sql.NullTime
|
|
}
|