entity updated to reflect table
This commit is contained in:
parent
ba33d18525
commit
f6cc0a3d93
@ -7,13 +7,14 @@ import (
|
|||||||
type ArticleEntity struct {
|
type ArticleEntity struct {
|
||||||
ID int64
|
ID int64
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time
|
||||||
LastUpdated time.Time
|
UpdatedAt time.Time
|
||||||
DeletedAt time.Time
|
DeletedAt time.Time
|
||||||
SourceID int64
|
SourceID int64
|
||||||
Tags string
|
Tags string
|
||||||
Title string
|
Title string
|
||||||
Url string
|
Url string
|
||||||
PubDate time.Time
|
PubDate time.Time
|
||||||
|
IsVideo bool
|
||||||
Thumbnail string
|
Thumbnail string
|
||||||
Description string
|
Description string
|
||||||
AuthorName string
|
AuthorName string
|
||||||
@ -23,7 +24,7 @@ type ArticleEntity struct {
|
|||||||
type DiscordQueueEntity struct {
|
type DiscordQueueEntity struct {
|
||||||
ID int64
|
ID int64
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time
|
||||||
LastUpdated time.Time
|
UpdatedAt time.Time
|
||||||
DeletedAt time.Time
|
DeletedAt time.Time
|
||||||
ArticleId int64
|
ArticleId int64
|
||||||
SourceId int64
|
SourceId int64
|
||||||
|
Loading…
Reference in New Issue
Block a user