Skip to content

Commit

Permalink
store: Mark SubgraphManifest.graphNodeVersion as nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
lutter authored and leoyvens committed Jun 23, 2021
1 parent 5ed8822 commit 5884e57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion store/postgres/src/deployment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ table! {
repository -> Nullable<Text>,
features -> Array<Text>,
schema -> Text,
graph_node_version_id -> Integer,
graph_node_version_id -> Nullable<Integer>,
}
}

Expand Down
2 changes: 1 addition & 1 deletion store/postgres/src/detail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ struct StoredSubgraphManifest {
repository: Option<String>,
features: Vec<String>,
schema: String,
graph_node_version_id: i32,
graph_node_version_id: Option<i32>,
}

impl From<StoredSubgraphManifest> for SubgraphManifestEntity {
Expand Down

0 comments on commit 5884e57

Please sign in to comment.