follows
| Name | Type | Storage | Nullable | Foreign Keys | Default Value & Notes |
|---|---|---|---|---|---|
| PKID | bigint | plain | Follow ID | ||
| 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: EXTRACT(epoch FROM now())Last modification date and time as a Unix timestamp (auto-reset on modification) | ||
| entity | t_entity | plain | Canonical entity | ||
| index | bigint | plain | Entity ID |
| Name | Unique | Nulls Distinct | Primary | Partial | Method | Keys |
|---|---|---|---|---|---|---|
| pk_follows | btree | ID | ||||
| u_follows_entity_creator_index | btree | entity, creator, index |
| Name | Type |
|---|---|
| c_follows_entity | check |
| fk_follows_creator | foreign_key |
| pk_follows | primary_key |
| u_follows_entity_creator_index | unique |
Loading...