table! {
product_property_value (id) {
id -> Int8,
product_id -> Varchar,
product_address -> Varchar,
property_name -> Text,
parent_property -> Nullable<Text>,
data_type -> Text,
bytes_value -> Nullable<Binary>,
boolean_value -> Nullable<Bool>,
number_value -> Nullable<Int8>,
string_value -> Nullable<Text>,
enum_value -> Nullable<Int4>,
latitude_value -> Nullable<Int8>,
longitude_value -> Nullable<Int8>,
start_commit_num -> Int8,
end_commit_num -> Int8,
service_id -> Nullable<Text>,
}
}
table! {
product (id) {
id -> Int8,
product_id -> Varchar,
product_address -> Varchar,
product_namespace -> Text,
owner -> Varchar,
start_commit_num -> Int8,
end_commit_num -> Int8,
service_id -> Nullable<Text>,
last_updated -> Nullable<Timestamp>,
}
}