| PKID | integer | plain | | | Price list ID |
| fork | integer | plain | | forks.ID | Fork ID (`null` for base module) |
| ownergroup | integer | plain | | groups.ID | Owner group ID (`null`=PUBLIC) |
| creator | integer | plain | | users.ID | Creator user ID (defaults to authenticated user on creation) |
| creationdate | bigint | plain | | | Default: date_part('epoch', now())Creation date and time as a Unix timestamp (defaults to current date and time on creation) |
| lastmodified | bigint | plain | | | Default: date_part('epoch', now())Last modification date and time as a Unix timestamp (auto-reset on modification) |
| activity | smallint | plain | | | Default: 0Activity (`0`=ACTIVE, `1`=DEACTIVATED, `2`=DELETED) |
| name | text | main | | | Name |
| type | smallint | plain | | | Default: 0Price list type (`0`=BILLING_MIN, `1`=BILLING_MAX, `2`=PROCUREMENT_MIN, `3`=PROCUREMENT_MAX) |
| currency | character varying(3) | extended | | | Currency code (ISO 4217) |
| discount | double precision | plain | | | Default: 0Default relative discount in percent |
| datefrom | bigint | plain | | | Start date as a Unix timestamp; must be less than or equal to `dateto` |
| dateto | bigint | plain | | | End date as a Unix timestamp; must be greater than or equal to `datefrom` |
| applytoall | smallint | plain | | | Default: 0Apply to all accounts regardless of association via `pricelists2accounts` |
| description | text | extended | | | Default: ''Detailed general description |