Compare commits
No commits in common. "4312cbdff5cee8c73e24ad9dc2b2166699101c78" and "d753d3202531f83a1296c878eb6fbe2581b7b9cb" have entirely different histories.
4312cbdff5
...
d753d32025
@ -1,11 +0,0 @@
|
||||
-- +migrate Up
|
||||
CREATE TABLE "ScrapeHistory"
|
||||
(
|
||||
user_source_id CHAR(25) NOT NULL REFERENCES "UserSource" (id),
|
||||
scrape_task_id CHAR(25) PRIMARY KEY,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
finished_at TIMESTAMP NULL,
|
||||
error TEXT NULL,
|
||||
added_posts INT NOT NULL,
|
||||
deleted_posts INT NOT NULL
|
||||
);
|
@ -1,19 +0,0 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type ScrapeHistory struct {
|
||||
ScrapeTaskID string `json:"scrape_task_id" gorm:"primaryKey"`
|
||||
UserSourceID string `json:"user_source_id" gorm:""`
|
||||
CreatedAt time.Time `json:"created_at" gorm:""`
|
||||
FinishedAt time.Time `json:"finished_at" gorm:"null"`
|
||||
Error string `json:"error" gorm:"null"`
|
||||
AddedPosts int `json:"added_posts" gorm:"not null"`
|
||||
DeletedPosts int `json:"deleted_posts" gorm:"not null"`
|
||||
}
|
||||
|
||||
func (ScrapeHistory) TableName() string {
|
||||
return "ScrapeHistory"
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
package models
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestScrapeHistory_TableName(t *testing.T) {
|
||||
scrapeHistory := ScrapeHistory{}
|
||||
expectedTableName := "ScrapeHistory"
|
||||
if tableName := scrapeHistory.TableName(); tableName != expectedTableName {
|
||||
t.Fatalf("expected %s, but got %s", expectedTableName, tableName)
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user