# AuthorshipColumns interface · @imqueue/pg-prisma

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

Which columns on one model carry authorship, and which one triggers a delete stamp.

**Signature:**

```typescript
export interface AuthorshipColumns 
```

## Properties


| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [createdBy](https://imqueue.org/api/pg-prisma/latest/pg-prisma.authorshipcolumns.createdby/) |  | string | Column stamped once, when the row is created. |
| [deletedAt?](https://imqueue.org/api/pg-prisma/latest/pg-prisma.authorshipcolumns.deletedat/) |  | string | _(Optional)_ Soft-delete column whose being set makes an update stamp `deletedBy`. |
| [deletedBy](https://imqueue.org/api/pg-prisma/latest/pg-prisma.authorshipcolumns.deletedby/) |  | string | Column stamped when an update sets `deletedAt`. |
| [updatedBy](https://imqueue.org/api/pg-prisma/latest/pg-prisma.authorshipcolumns.updatedby/) |  | string | Column stamped on create and on every update. |

