/ src / storage / blockedTags / migrations.ts
migrations.ts
1  import type { DefineMigrations } from '../migrations';
2  import type { blockedTagsVersion } from './index';
3  import type { RawBlockedTags } from './types';
4  
5  type Migrations = DefineMigrations<typeof blockedTagsVersion, [RawBlockedTags]>;
6  
7  export const blockedTagsMigrations: Migrations = {};