Massive/migrations/1667186124792-plans.ts

19 lines
502 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,
2023-08-21 12:25:29 +00:00
title TEXT NOT NULL,
2022-10-31 04:05:31 +00:00
days TEXT NOT NULL,
workouts TEXT NOT NULL
)
2023-08-21 12:25:29 +00:00
`);
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
}
}