table! {
grid_schema (id) {
id -> Int8,
start_commit_num -> Int8,
end_commit_num -> Int8,
name -> Text,
description -> Text,
owner -> Text,
service_id -> Nullable<Text>,
last_updated -> Nullable<Timestamp>,
}
}
table! {
grid_property_definition (id) {
id -> Int8,
start_commit_num -> Int8,
end_commit_num -> Int8,
name -> Text,
schema_name -> Text,
data_type -> Text,
required -> Bool,
description -> Text,
number_exponent -> Int8,
enum_options -> Text,
parent_name -> Nullable<Text>,
service_id -> Nullable<Text>,
}
}