Generate & Run Migrations
Database migrations are a way of propagating changes you make to your entities into your database schema. The changes you make to your models (adding a field, deleting an entity, etc.) do not automatically modify your database. You have to do it yourself.
You have two options: update the database schema manually (using database software, for example) or run migrations.
Migrations are a programmatic technique for updating or reverting a database schema in a predictable and repeatable way. They are defined with classes, each of which has an up
method and a down
method. The first one contains SQL queries to update the database schema to reflect the new models. The second contains SQL queries to revert the changes made by the up
method.
Theses classes are located in separate files in the src/migrations
directory.
Example of a migration file
import { MigrationInterface, QueryRunner } from 'typeorm';
export class PostRefactoringTIMESTAMP implements MigrationInterface {
async up(queryRunner: QueryRunner): Promise<any> {
await queryRunner.query(`ALTER TABLE "post" RENAME COLUMN "title" TO "name"`);
}
async down(queryRunner: QueryRunner): Promise<any> {
await queryRunner.query(`ALTER TABLE "post" RENAME COLUMN "name" TO "title"`); // reverts things made in "up" method
}
}
The Commands
Generating Migrations Automatically
Usually, you do not need to write migrations manually. TypeORM offers a powerful feature to generate your migration files based on the changes you make to your entities.
---
title: Build the entities
---
npm run build:app
---
title: Generate the migration file based on the entities changes
---
npm run migration:generate -- -n name-of-this-migration
---
title: Build the migration files
---
npm run build:migrations
Run the migrations
npm run migration:run
Revert the last migration
npm run migration:revert
A Complete Example
1. Create a new User
entity.
import { Entity, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number;
}
2. Build the application.
npm run build:app
3. Generate a migration file.
npm run migration:generate -- --name add-user
A new file xxx-add-user.ts
appears in src/directory
.
import {MigrationInterface, QueryRunner} from "typeorm";
export class addUser1561976236112 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<any> {
await queryRunner.query(`CREATE TABLE "user" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL)`);
}
public async down(queryRunner: QueryRunner): Promise<any> {
await queryRunner.query(`DROP TABLE "user"`);
}
}
4. Build and run the migration.
npm run build:migrations
npm run migration:run
5. Add new columns to the entity.
import { hashPassword } from '@foal/core';
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number;
@Column({ unique: true })
email: string;
@Column()
password: string;
async setPassword(password: string) {
this.password = await hashPassword(password);
}
}
6. Build the application.
npm run build:app
7. Generate another migration file.
npm run migration:generate -- --name add-email-and-password
Another file xxx-add-email-and-password.ts
appears in src/directory
.
import {MigrationInterface, QueryRunner} from "typeorm";
export class addEmailAndPassword1561981516514 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<any> {
await queryRunner.query(`CREATE TABLE "temporary_user" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password" varchar NOT NULL, CONSTRAINT "UQ_ed766a9782779b8390a2a81f444" UNIQUE ("email"))`);
await queryRunner.query(`INSERT INTO "temporary_user"("id") SELECT "id" FROM "user"`);
await queryRunner.query(`DROP TABLE "user"`);
await queryRunner.query(`ALTER TABLE "temporary_user" RENAME TO "user"`);
}
public async down(queryRunner: QueryRunner): Promise<any> {
await queryRunner.query(`ALTER TABLE "user" RENAME TO "temporary_user"`);
await queryRunner.query(`CREATE TABLE "user" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL)`);
await queryRunner.query(`INSERT INTO "user"("id") SELECT "id" FROM "temporary_user"`);
await queryRunner.query(`DROP TABLE "temporary_user"`);
}
}
8. Build and run the migration.
npm run build:migrations
npm run migration:run
The synchronize
and dropSchema
options
These two options are particularly useful for testing.
synchronize
- Indicates if database schema should be auto created on every application launch.dropSchema
- Drops the schema each time connection is being established.
Using the synchronize
option for production is not recommended as you could loose data by mistake.
Advanced
The TypeORM documentation gives more details on how to write migrations.