likes
| Name | Type | Storage | Nullable | Foreign Keys | Default Value & Notes |
|---|---|---|---|---|---|
| PKID | bigint | plain | Like 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) | ||
| record | bigint | plain | records.ID | Record ID (**dependency**) |
| Name | Unique | Nulls Distinct | Primary | Partial | Method | Keys |
|---|---|---|---|---|---|---|
| pk_likes | btree | ID | ||||
| u_likes_record_creator | btree | record, creator |
| Name | Type |
|---|---|
| fk_likes_creator | foreign_key |
| fk_likes_record | foreign_key |
| pk_likes | primary_key |
| u_likes_record_creator | unique |
Loading...