Updata ERD

main
Giò 2024-04-22 12:00:02 +02:00
parent 1346704188
commit 42e6613a29
1 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ Table extractions {
property_id integer [unique, ref: > properties.property_id] property_id integer [unique, ref: > properties.property_id]
body text [not null] body text [not null]
header text [not null] header text [not null]
type types [not null]
created_at timestamp [not null] created_at timestamp [not null]
} }
@ -38,6 +39,6 @@ enum types {
Table exceptions { Table exceptions {
exception_id integer [primary key] exception_id integer [primary key]
exception json [not null, note: "exception while scraping (e. g. HTTP error message) and called url."] exception json [not null, note: "exception while scraping (e. g. HTTP error message) and called url."]
type types [not null, note: "for which entity did the exception occur."] type types [not null]
property_id integer [not null, ref: > properties.property_id, note: "either a property_id"] property_id integer [not null, ref: > properties.property_id, note: "either a property_id"]
} }