mikro-orm/mikro-orm

View on GitHub
packages/core/src/types/MediumIntType.ts

Summary

Maintainability
A
0 mins
Test Coverage
C
75%
import type { Platform } from '../platforms';
import type { EntityProperty } from '../typings';
import { IntegerType } from './IntegerType';

export class MediumIntType extends IntegerType {

  override getColumnType(prop: EntityProperty, platform: Platform) {
    return platform.getMediumIntTypeDeclarationSQL(prop);
  }

}