mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
18 lines
570 B
TypeScript
18 lines
570 B
TypeScript
import {Config} from '../../../../common/config/private/Config';
|
|
import {DatabaseType} from '../../../../common/config/private/IPrivateConfig';
|
|
import {ColumnOptions} from 'typeorm/decorator/options/ColumnOptions';
|
|
|
|
export class ColumnCharsetCS implements ColumnOptions {
|
|
|
|
public get charset(): string {
|
|
return Config.Server.database.type === DatabaseType.mysql ? 'utf8' : null;
|
|
}
|
|
|
|
public get collation(): string {
|
|
return Config.Server.database.type === DatabaseType.mysql ? 'utf8_bin' : null;
|
|
|
|
}
|
|
}
|
|
|
|
export const columnCharsetCS = new ColumnCharsetCS();
|