# ColumnIndexOptions.concurrently property · @imqueue/pg-sequelize

Source: https://imqueue.org/api/pg-sequelize/latest/pg-sequelize.columnindexoptions.concurrently/
Published: 2026-08-01
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/pg-sequelize 4.2.0 — generated reference, not hand-written

Builds the index without locking writes out of the table.

**Signature:**

```typescript
concurrently: boolean;
```

## Remarks

Applied to the drop as well as the create. Postgres refuses to run either inside a transaction, and a concurrent build that fails leaves an invalid index behind to be dropped by hand — the price of not blocking a live table.

