Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
884e2532
authored
Mar 12, 2025
by
Seefs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Support postgresql:// dsn format
parent
6cb9001f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
model/main.go
+6
-5
No files found.
model/main.go
View file @
884e2532
package
model
import
(
"github.com/glebarez/sqlite"
"gorm.io/driver/mysql"
"gorm.io/driver/postgres"
"gorm.io/gorm"
"log"
"one-api/common"
"os"
"strings"
"sync"
"time"
"github.com/glebarez/sqlite"
"gorm.io/driver/mysql"
"gorm.io/driver/postgres"
"gorm.io/gorm"
)
var
groupCol
string
...
...
@@ -60,7 +61,7 @@ func chooseDB(envName string) (*gorm.DB, error) {
}()
dsn
:=
os
.
Getenv
(
envName
)
if
dsn
!=
""
{
if
strings
.
HasPrefix
(
dsn
,
"postgres://"
)
{
if
strings
.
HasPrefix
(
dsn
,
"postgres://"
)
||
strings
.
HasPrefix
(
dsn
,
"postgresql://"
)
{
// Use PostgreSQL
common
.
SysLog
(
"using PostgreSQL as database"
)
common
.
UsingPostgreSQL
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment