Create accept-migration.ts
This commit is contained in:
parent
21064f7859
commit
b2cf74e878
1 changed files with 25 additions and 0 deletions
25
src/tools/accept-migration.ts
Normal file
25
src/tools/accept-migration.ts
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
// ex) node built/tools/accept-migration Yo 1000000000001
|
||||||
|
|
||||||
|
import { createConnection } from 'typeorm';
|
||||||
|
import config from '../config';
|
||||||
|
|
||||||
|
createConnection({
|
||||||
|
type: 'postgres',
|
||||||
|
host: config.db.host,
|
||||||
|
port: config.db.port,
|
||||||
|
username: config.db.user,
|
||||||
|
password: config.db.pass,
|
||||||
|
database: config.db.db,
|
||||||
|
extra: config.db.extra,
|
||||||
|
synchronize: false,
|
||||||
|
dropSchema: false,
|
||||||
|
}).then(c => {
|
||||||
|
c.query(`INSERT INTO migrations(timestamp,name) VALUES (${process.argv[3]}, '${process.argv[2]}${process.argv[3]}');`).then(() => {
|
||||||
|
console.log('done');
|
||||||
|
process.exit(0);
|
||||||
|
}).catch(e => {
|
||||||
|
console.log('ERROR:');
|
||||||
|
console.log(e);
|
||||||
|
process.exit(1);
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in a new issue