# BaseModel.drop() method · @imqueue/pg-sequelize

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

Drops this model's relation: `DROP VIEW` for a view, `DROP TABLE` otherwise.

**Signature:**

```typescript
static drop(options?: DropOptions): Promise<any>;
```

## Parameters


| Parameter | Type | Description |
| --- | --- | --- |
| options | DropOptions | _(Optional)_ Sequelize's own drop options; `cascade` applies to both. |


**Returns:**

Promise<any>

The result of the drop statement.

