2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-03-02 17:26:30 +00:00
|
|
|
|
|
|
|
package db
|
|
|
|
|
2021-05-15 10:58:11 +01:00
|
|
|
const (
|
|
|
|
// DBTypePostgres represents an underlying POSTGRES database type.
|
|
|
|
DBTypePostgres string = "POSTGRES"
|
|
|
|
)
|
2021-03-02 17:26:30 +00:00
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
// DB provides methods for interacting with an underlying database or other storage mechanism.
|
2021-03-04 13:38:18 +00:00
|
|
|
type DB interface {
|
2021-08-20 11:26:56 +01:00
|
|
|
Account
|
|
|
|
Admin
|
2024-07-23 20:44:31 +01:00
|
|
|
AdvancedMigration
|
2023-08-10 15:08:41 +01:00
|
|
|
Application
|
2021-08-20 11:26:56 +01:00
|
|
|
Basic
|
2024-07-23 20:44:31 +01:00
|
|
|
Conversation
|
2021-08-20 11:26:56 +01:00
|
|
|
Domain
|
2022-05-20 09:34:36 +01:00
|
|
|
Emoji
|
2023-12-18 14:18:25 +00:00
|
|
|
HeaderFilter
|
2021-08-20 11:26:56 +01:00
|
|
|
Instance
|
2024-07-11 15:44:29 +01:00
|
|
|
Interaction
|
2024-03-06 10:15:58 +00:00
|
|
|
Filter
|
2023-05-25 09:37:38 +01:00
|
|
|
List
|
2023-07-29 11:49:14 +01:00
|
|
|
Marker
|
2021-08-20 11:26:56 +01:00
|
|
|
Media
|
|
|
|
Mention
|
2024-03-06 10:18:57 +00:00
|
|
|
Move
|
2021-08-20 11:26:56 +01:00
|
|
|
Notification
|
2023-11-08 14:32:17 +00:00
|
|
|
Poll
|
2021-08-20 11:26:56 +01:00
|
|
|
Relationship
|
2023-01-10 14:19:05 +00:00
|
|
|
Report
|
2023-08-19 13:33:15 +01:00
|
|
|
Rule
|
2023-06-21 17:26:40 +01:00
|
|
|
Search
|
2021-08-25 14:34:33 +01:00
|
|
|
Session
|
2021-08-20 11:26:56 +01:00
|
|
|
Status
|
2023-03-20 18:10:08 +00:00
|
|
|
StatusBookmark
|
|
|
|
StatusFave
|
2023-07-31 14:47:35 +01:00
|
|
|
Tag
|
2023-10-25 15:04:53 +01:00
|
|
|
Thread
|
2021-08-20 11:26:56 +01:00
|
|
|
Timeline
|
2022-10-03 09:46:11 +01:00
|
|
|
User
|
2022-11-11 11:18:38 +00:00
|
|
|
Tombstone
|
2021-03-02 17:26:30 +00:00
|
|
|
}
|