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

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

Forgets the `returning` column list, so serializing emits every loaded column again.

**Signature:**

```typescript
restoreSerialization(): this;
```
**Returns:**

this

This instance, for chaining.

## Remarks

A write that named its returning columns leaves that list on the instance, and `toJSON()` honours it from then on. Call this when the same instance is reused for something that should serialize in full.

