| created_at |
timestamp with time zone |
now() |
false |
|
|
Timestamp when the record was created. |
| deleted_at |
timestamp with time zone |
|
true |
|
|
Timestamp when the record was deleted. If null, the record is not
deleted. |
| id |
uuid |
uuid_generate_v4() |
false |
public.exercise_service_info |
|
A unique, stable identifier for the record. |
| internal_url |
varchar(255) |
|
true |
|
|
A url to the service info endpoint that is accessible only from
inside the cluster for enabling communication with the service without
leaving the cluster. If not set, public_url will be used instead. |
| max_reprocessing_submissions_at_once |
integer |
|
false |
|
|
When reprocessing submissions limit the number of concurrent posted
submissions to this number. Note that this only affects
reprocessing. |
| name |
varchar(255) |
|
false |
|
|
Human readable name of the exercise service e.g. “Test My Code” or
“Quizzes”. |
| public_url |
varchar(255) |
|
false |
|
|
A url to the service info endpoint that is accessible from the
internet for enabling communication with the services outside the
cluster. The base url of the service is derived from this and given to
browser frontends so that they can access the iframes of this exercise
service. |
| slug |
varchar(255) |
|
false |
|
|
Identifier for the exercise_service e.g. “test-my-code” or
“example-exercise”. The same string must be used in
exercise_tasks.exercise_type. |
| updated_at |
timestamp with time zone |
now() |
false |
|
|
Timestamp when the record was last updated. The field is updated
automatically by the set_timestamp trigger. |