Compare commits
2 Commits
2391bad68e
...
e5b8457f42
Author | SHA1 | Date | |
---|---|---|---|
e5b8457f42 | |||
abe553e165 |
@ -4,7 +4,6 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"embed"
|
"embed"
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
|
||||||
|
|
||||||
"git.anthrove.art/Anthrove/otter-space-sdk/v4/internal/utils"
|
"git.anthrove.art/Anthrove/otter-space-sdk/v4/internal/utils"
|
||||||
otterError "git.anthrove.art/Anthrove/otter-space-sdk/v4/pkg/error"
|
otterError "git.anthrove.art/Anthrove/otter-space-sdk/v4/pkg/error"
|
||||||
@ -66,9 +65,6 @@ func Connect(ctx context.Context, config models.DatabaseConfig) error {
|
|||||||
dsn := fmt.Sprintf("host=%s user=%s password=%s dbname=%s port=%d sslmode=%s TimeZone=%s", config.Endpoint, config.Username, config.Password, config.Database, config.Port, localSSL, config.Timezone)
|
dsn := fmt.Sprintf("host=%s user=%s password=%s dbname=%s port=%d sslmode=%s TimeZone=%s", config.Endpoint, config.Username, config.Password, config.Database, config.Port, localSSL, config.Timezone)
|
||||||
sqlDB, err := gorm.Open(postgres.Open(dsn), &gorm.Config{
|
sqlDB, err := gorm.Open(postgres.Open(dsn), &gorm.Config{
|
||||||
TranslateError: true,
|
TranslateError: true,
|
||||||
NowFunc: func() time.Time {
|
|
||||||
return time.Now().UTC()
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return utils.HandleError(ctx, span, localLogger, err)
|
return utils.HandleError(ctx, span, localLogger, err)
|
||||||
|
@ -91,7 +91,7 @@ CREATE TABLE "UserSource"
|
|||||||
scrape_time_interval TEXT,
|
scrape_time_interval TEXT,
|
||||||
account_username TEXT,
|
account_username TEXT,
|
||||||
account_id TEXT,
|
account_id TEXT,
|
||||||
last_scrape_time TIMESTAMP,
|
last_scrape_time TIMESTAMP WITH TIME ZONE,
|
||||||
account_validate BOOL DEFAULT FALSE,
|
account_validate BOOL DEFAULT FALSE,
|
||||||
account_validation_key CHAR(25),
|
account_validation_key CHAR(25),
|
||||||
UNIQUE (source_id, account_username, account_id)
|
UNIQUE (source_id, account_username, account_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user