While creating an entity I wanted to use serial as my Column type, but typescript gives me error:
Type ‘”smallserial”‘ is not assignable to type
I checked other serial types and got same error. Are these types not available? I am using Postgres database.
@PrimaryGeneratedColumn({ type: 'smallserial'})
id: number