Massive/migrations/1667186124792-plans.ts

18 lines
474 B
TypeScript
Raw Normal View History

import {MigrationInterface, QueryRunner} from 'typeorm'
2022-10-31 04:05:31 +00:00
export class plans1667186124792 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`
CREATE TABLE IF NOT EXISTS plans (
id INTEGER PRIMARY KEY AUTOINCREMENT,
days TEXT NOT NULL,
workouts TEXT NOT NULL
)
`)
2022-10-31 04:05:31 +00:00
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.dropTable('plans')
2022-10-31 04:05:31 +00:00
}
}