diff options
Diffstat (limited to 'server/initializers/database.ts')
-rw-r--r-- | server/initializers/database.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/initializers/database.ts b/server/initializers/database.ts index 1383bb33b..19b5a0466 100644 --- a/server/initializers/database.ts +++ b/server/initializers/database.ts | |||
@@ -18,7 +18,7 @@ import { UserModel } from '../models/account/user-interface' | |||
18 | import { AccountVideoRateModel } from '../models/account/account-video-rate-interface' | 18 | import { AccountVideoRateModel } from '../models/account/account-video-rate-interface' |
19 | import { AccountFollowModel } from '../models/account/account-follow-interface' | 19 | import { AccountFollowModel } from '../models/account/account-follow-interface' |
20 | import { TagModel } from './../models/video/tag-interface' | 20 | import { TagModel } from './../models/video/tag-interface' |
21 | import { PodModel } from './../models/pod/pod-interface' | 21 | import { ServerModel } from '../models/server/server-interface' |
22 | import { OAuthTokenModel } from './../models/oauth/oauth-token-interface' | 22 | import { OAuthTokenModel } from './../models/oauth/oauth-token-interface' |
23 | import { OAuthClientModel } from './../models/oauth/oauth-client-interface' | 23 | import { OAuthClientModel } from './../models/oauth/oauth-client-interface' |
24 | import { JobModel } from './../models/job/job-interface' | 24 | import { JobModel } from './../models/job/job-interface' |
@@ -38,7 +38,7 @@ const database: { | |||
38 | Job?: JobModel, | 38 | Job?: JobModel, |
39 | OAuthClient?: OAuthClientModel, | 39 | OAuthClient?: OAuthClientModel, |
40 | OAuthToken?: OAuthTokenModel, | 40 | OAuthToken?: OAuthTokenModel, |
41 | Pod?: PodModel, | 41 | Server?: ServerModel, |
42 | Tag?: TagModel, | 42 | Tag?: TagModel, |
43 | AccountVideoRate?: AccountVideoRateModel, | 43 | AccountVideoRate?: AccountVideoRateModel, |
44 | AccountFollow?: AccountFollowModel, | 44 | AccountFollow?: AccountFollowModel, |