-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathormconfig.js
39 lines (31 loc) · 902 Bytes
/
ormconfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = {
type: 'postgres',
host: 'localhost',
port: 5432,
username: 'postgres',
password: 'pass123',
database: 'postgres',
entities: ['dist/**/*.entity.js'],
migrations: ['dist/migrations/*.js'],
cli: {
migrationsDir: 'src/migrations',
},
};
// Creating a TypeOrm Migration
// npx typeorm migration:create -n CoffeeRefactor
// CoffeeRefactor being the NAME we are giving "this" migration
/* src/migrations/... file */
/* RUNNING MIGRATIONS */
/**
* 💡 Remember 💡
* You must BUILD your Nest project (so that everything is output to the `/dist/` folder,
* before a Migration can run, it needs compilated files.
*/
// Compile project first
// npm run build
// Run migration(s)
// npx typeorm migration:run
// REVERT migration(s)
// npx typeorm migration:revert
// Let TypeOrm generate migrations (for you)
// npx typeorm migration:generate -n SchemaSync