core
: Add missing rel
attribute to meta_properties
This commit is contained in:
parent
affb063508
commit
6315c22ad6
2 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -40,6 +40,7 @@ pub struct MetaProperty {
|
|||
pub id: Uuid,
|
||||
pub document: String,
|
||||
pub pattern: String,
|
||||
pub rel: String,
|
||||
pub value: Option<String>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue