Delete init.ts

This commit is contained in:
syuilo 2019-07-09 04:09:02 +09:00 committed by GitHub
parent 697219e946
commit 2465a377a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +0,0 @@
import { initDb } from './db/postgre';
console.log('Init database...');
initDb(false, true, true).then(() => {
console.log('Done :)');
process.exit(0);
}, e => {
console.error('Failed to init database');
console.error(e);
});