38 lines
868 B
TypeScript
38 lines
868 B
TypeScript
import { MigrationInterface, QueryRunner, Table } from 'typeorm';
|
|
|
|
export class AddUser1637028716848 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.createTable(
|
|
new Table({
|
|
name: 'user',
|
|
columns: [
|
|
{
|
|
name: 'id',
|
|
type: 'int',
|
|
isPrimary: true,
|
|
},
|
|
{
|
|
name: 'name',
|
|
type: 'text',
|
|
isNullable: false,
|
|
},
|
|
{
|
|
name: 'password_hash',
|
|
type: 'text',
|
|
isNullable: false,
|
|
},
|
|
{
|
|
name: 'email',
|
|
type: 'text',
|
|
isNullable: false,
|
|
},
|
|
],
|
|
}),
|
|
);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.dropTable('user');
|
|
}
|
|
}
|