remove typeorm files

This commit is contained in:
Chika 2020-11-14 16:19:53 +03:00
parent e37462d176
commit e8f920d373
2 changed files with 0 additions and 30 deletions

View File

@ -1,23 +0,0 @@
import { ConnectionOptions } from "typeorm";
import Entities from "../entities";
import credentials from "./credentials";
const connectionOptions: ConnectionOptions = {
type: "mssql",
host: credentials.host,
schema: "dbo",
username: credentials.username,
password: credentials.password,
database: credentials.database,
domain: credentials.domain,
entities: Entities,
synchronize: true,
options: {
cryptoCredentialsDetails: {
minVersion: "TLSv1",
},
encrypt: false,
},
};
export default connectionOptions;

View File

@ -1,7 +0,0 @@
export default {
host: "localhost",
username: "localuser",
password: "123",
domain: undefined,
database: "",
};