-
Notifications
You must be signed in to change notification settings - Fork 0
/
drizzle.config.ts
27 lines (17 loc) · 1.09 KB
/
drizzle.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*****************************************************************************************************************/
// @author Michael Roberts <[email protected]>
// @package @observerly/perseus-on-the-edge
// @license Copyright © 2021-2023 observerly
/*****************************************************************************************************************/
import { type Config } from 'drizzle-kit'
/*****************************************************************************************************************/
const defineDrizzleConfig = (config: Config) => config
/*****************************************************************************************************************/
const config = {
out: './server/db/migrations',
schema: './server/db/schema',
breakpoints: true
}
/*****************************************************************************************************************/
export default defineDrizzleConfig(config)
/*****************************************************************************************************************/