Skip to content

Commit c208139

Browse files
committed
Make migrations work again
1 parent baacdbd commit c208139

4 files changed

+70
-64
lines changed

package-scripts.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ module.exports = {
124124
script: series(
125125
'nps banner.migrate',
126126
'nps config',
127-
runFast('./node_modules/typeorm/cli.js migrations:run')
127+
runFast('./node_modules/typeorm/cli.js migration:run')
128128
),
129129
description: 'Migrates the database to newest version available'
130130
},
@@ -267,11 +267,11 @@ function copy(source, target) {
267267
}
268268

269269
function run(path) {
270-
return `ts-node --typeCheck ${path}`;
270+
return `ts-node ${path}`;
271271
}
272272

273273
function runFast(path) {
274-
return `ts-node ${path}`;
274+
return `ts-node --transpileOnly ${path}`;
275275
}
276276

277277
function tslint(path) {

src/database/migrations/1511105183653-CreateUserTable.ts

+30-27
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,36 @@ import { MigrationInterface, QueryRunner, Table } from 'typeorm';
33
export class CreateUserTable1511105183653 implements MigrationInterface {
44

55
public async up(queryRunner: QueryRunner): Promise<any> {
6-
const table = new Table('user', [
7-
{
8-
name: 'id',
9-
type: 'varchar',
10-
length: 255,
11-
isPrimary: true,
12-
isNullable: false,
13-
}, {
14-
name: 'first_name',
15-
type: 'varchar',
16-
length: 255,
17-
isPrimary: false,
18-
isNullable: false,
19-
}, {
20-
name: 'last_name',
21-
type: 'varchar',
22-
length: 255,
23-
isPrimary: false,
24-
isNullable: false,
25-
}, {
26-
name: 'email',
27-
type: 'varchar',
28-
length: 255,
29-
isPrimary: false,
30-
isNullable: false,
31-
},
32-
]);
6+
const table = new Table({
7+
name: 'user',
8+
columns: [
9+
{
10+
name: 'id',
11+
type: 'varchar',
12+
length: '255',
13+
isPrimary: true,
14+
isNullable: false,
15+
}, {
16+
name: 'first_name',
17+
type: 'varchar',
18+
length: '255',
19+
isPrimary: false,
20+
isNullable: false,
21+
}, {
22+
name: 'last_name',
23+
type: 'varchar',
24+
length: '255',
25+
isPrimary: false,
26+
isNullable: false,
27+
}, {
28+
name: 'email',
29+
type: 'varchar',
30+
length: '255',
31+
isPrimary: false,
32+
isNullable: false,
33+
},
34+
],
35+
});
3336
await queryRunner.createTable(table);
3437
}
3538

src/database/migrations/1512663524808-CreatePetTable.ts

+30-27
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,36 @@ import { MigrationInterface, QueryRunner, Table } from 'typeorm';
33
export class CreatePetTable1512663524808 implements MigrationInterface {
44

55
public async up(queryRunner: QueryRunner): Promise<any> {
6-
const table = new Table('pet', [
7-
{
8-
name: 'id',
9-
type: 'varchar',
10-
length: 255,
11-
isPrimary: true,
12-
isNullable: false,
13-
}, {
14-
name: 'name',
15-
type: 'varchar',
16-
length: 255,
17-
isPrimary: false,
18-
isNullable: false,
19-
}, {
20-
name: 'age',
21-
type: 'int',
22-
length: 11,
23-
isPrimary: false,
24-
isNullable: false,
25-
}, {
26-
name: 'user_id',
27-
type: 'varchar',
28-
length: 255,
29-
isPrimary: false,
30-
isNullable: true,
31-
},
32-
]);
6+
const table = new Table({
7+
name: 'pet',
8+
columns: [
9+
{
10+
name: 'id',
11+
type: 'varchar',
12+
length: '255',
13+
isPrimary: true,
14+
isNullable: false,
15+
}, {
16+
name: 'name',
17+
type: 'varchar',
18+
length: '255',
19+
isPrimary: false,
20+
isNullable: false,
21+
}, {
22+
name: 'age',
23+
type: 'int',
24+
length: '11',
25+
isPrimary: false,
26+
isNullable: false,
27+
}, {
28+
name: 'user_id',
29+
type: 'varchar',
30+
length: '255',
31+
isPrimary: false,
32+
isNullable: true,
33+
},
34+
],
35+
});
3336
await queryRunner.createTable(table);
3437
}
3538

src/database/migrations/1512663990063-AddUserRelationToPetTable.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import { MigrationInterface, QueryRunner, TableForeignKey } from 'typeorm';
22

33
export class AddUserRelationToPetTable1512663990063 implements MigrationInterface {
44

5-
private tableForeignKey = new TableForeignKey(
6-
'fk_user_pet',
7-
['user_id'],
8-
['id'],
9-
'user',
10-
''
11-
);
5+
private tableForeignKey = new TableForeignKey({
6+
name: 'fk_user_pet',
7+
columnNames: ['user_id'],
8+
referencedColumnNames: ['id'],
9+
referencedTableName: 'user',
10+
onDelete: 'CASCADE',
11+
});
1212

1313
public async up(queryRunner: QueryRunner): Promise<any> {
1414
await queryRunner.createForeignKey('pet', this.tableForeignKey);

0 commit comments

Comments
 (0)