1
Fork 0

core: Add missing rel attribute to meta_properties

This commit is contained in:
Steffo 2024-11-15 06:30:42 +01:00
parent affb063508
commit 6315c22ad6
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0
2 changed files with 2 additions and 0 deletions

View file

@ -32,6 +32,7 @@ CREATE TABLE meta_properties (
id UUID DEFAULT gen_random_uuid(),
document BPCHAR NOT NULL,
pattern BPCHAR NOT NULL,
rel BPCHAR NOT NULL,
value BPCHAR,
PRIMARY KEY (id)

View file

@ -40,6 +40,7 @@ pub struct MetaProperty {
pub id: Uuid,
pub document: String,
pub pattern: String,
pub rel: String,
pub value: Option<String>,
}