---
url: /api/orm/objection/types/domain/interface-column-opts.md
description: api documentation of ColumnOpts from @tsed/objection
---

## Usage

```typescript
import { ColumnOpts } from "@tsed/objection";
```

> See [/packages/orm/objection/src/domain/ColumnOpts.ts](https://github.com/tsedio/tsed/blob/v8.38.8/packages/orm/objection/src/domain/ColumnOpts.ts#L0-L0).

## Overview

```ts
interface ColumnOpts {
    columnType: "idColumn" | "string" | "number" | "boolean";
    options: any;
}
```

## columnType

```ts
columnType: "idColumn" | "string" | "number" | "boolean";
```

## options

```ts
options: any;
```
