mirror of
https://github.com/standardnotes/server
synced 2026-08-04 00:15:57 -04:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm'
|
|
|
|
export class RemoveNotifications1695643525793 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query('DELETE FROM `notifications`')
|
|
}
|
|
|
|
public async down(): Promise<void> {
|
|
return
|
|
}
|
|
}
|