This commit is contained in:
Till Faelligen 2022-05-12 09:59:48 +02:00
parent 81b3fb9715
commit 271be34fd6

View file

@ -39,23 +39,23 @@ import (
// Database represents an account database // Database represents an account database
type Database struct { type Database struct {
DB *sql.DB DB *sql.DB
Writer sqlutil.Writer Writer sqlutil.Writer
Accounts tables.AccountsTable Accounts tables.AccountsTable
Profiles tables.ProfileTable Profiles tables.ProfileTable
AccountDatas tables.AccountDataTable AccountDatas tables.AccountDataTable
ThreePIDs tables.ThreePIDTable ThreePIDs tables.ThreePIDTable
OpenIDTokens tables.OpenIDTable OpenIDTokens tables.OpenIDTable
KeyBackups tables.KeyBackupTable KeyBackups tables.KeyBackupTable
KeyBackupVersions tables.KeyBackupVersionTable KeyBackupVersions tables.KeyBackupVersionTable
Devices tables.DevicesTable Devices tables.DevicesTable
LoginTokens tables.LoginTokenTable LoginTokens tables.LoginTokenTable
Notifications tables.NotificationTable Notifications tables.NotificationTable
Pushers tables.PusherTable Pushers tables.PusherTable
Stats tables.StatsTable Stats tables.StatsTable
LoginTokenLifetime time.Duration LoginTokenLifetime time.Duration
ServerName gomatrixserverlib.ServerName ServerName gomatrixserverlib.ServerName
BcryptCost int BcryptCost int
OpenIDTokenLifetime time.Duration OpenIDTokenLifetime time.Duration
} }