mirror of
https://github.com/certd/certd.git
synced 2026-05-16 13:17:29 +08:00
12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
|
|
import { MidwayConfig } from '@midwayjs/core';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
typeorm: {
|
||
|
|
dataSource: {
|
||
|
|
default: {
|
||
|
|
synchronize: true, // 如果第一次使用,不存在表,有同步的需求可以写 true
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
} as MidwayConfig;
|