mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-06-18 18:16:26 +00:00
Convert db backend to use Gorm, with basis for support
for Mysql and Postgres in addition to existing Sqlite
This commit is contained in:
@ -2,14 +2,14 @@ package certificate
|
||||
|
||||
// Template is the model given to the template parser, converted from the Model
|
||||
type Template struct {
|
||||
ID int
|
||||
CreatedOn string
|
||||
ModifiedOn string
|
||||
ID uint
|
||||
CreatedAt string
|
||||
UpdatedAt string
|
||||
ExpiresOn string
|
||||
Type string
|
||||
UserID int
|
||||
CertificateAuthorityID int
|
||||
DNSProviderID int
|
||||
UserID uint
|
||||
CertificateAuthorityID uint
|
||||
DNSProviderID uint
|
||||
Name string
|
||||
DomainNames []string
|
||||
Status string
|
||||
|
Reference in New Issue
Block a user