mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 18:55:19 -04:00
12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export enum DatabaseDialect {
|
|
POSTGRES = 'postgres',
|
|
MYSQL = 'mysql',
|
|
MARIADB = 'mariadb',
|
|
SQLITE = 'sqlite',
|
|
}
|