aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/database.ts
blob: 776f5361e886f92f35ecdbdd658f044e31b3bd4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import type { LocaleEntry } from './definitions';

/**
 * The possible definitions related to databases.
 */
export type DatabaseDefinitions = LocaleEntry<{
  /**
   * Database Engine
   */
  engine: string[];
  /**
   * Database Collation
   */
  collation: string[];
  /**
   * Column names
   */
  column: string[];
  /**
   * Column types
   */
  type: string[];
}>;