From 602d0ff2598b6ac15766689c925aff818c029615 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 14 Aug 2018 21:02:18 -0700 Subject: index_val and role_val --- rust/src/database_models.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rust/src/database_models.rs') diff --git a/rust/src/database_models.rs b/rust/src/database_models.rs index 258bcab7..c7da4de7 100644 --- a/rust/src/database_models.rs +++ b/rust/src/database_models.rs @@ -227,8 +227,8 @@ pub struct ReleaseContribRow { pub release_rev: Uuid, pub creator_ident_id: Option, pub raw_name: Option, - pub role: Option, - pub index: Option, + pub role_val: Option, + pub index_val: Option, pub extra_json: Option, } @@ -238,8 +238,8 @@ pub struct ReleaseContribNewRow { pub release_rev: Uuid, pub creator_ident_id: Option, pub raw_name: Option, - pub role: Option, - pub index: Option, + pub role_val: Option, + pub index_val: Option, pub extra_json: Option, } @@ -249,7 +249,7 @@ pub struct ReleaseRefRow { pub id: i64, pub release_rev: Uuid, pub target_release_ident_id: Option, - pub index: Option, + pub index_val: Option, pub key: Option, pub extra_json: Option, pub container_title: Option, @@ -263,7 +263,7 @@ pub struct ReleaseRefRow { pub struct ReleaseRefNewRow { pub release_rev: Uuid, pub target_release_ident_id: Option, - pub index: Option, + pub index_val: Option, pub key: Option, pub extra_json: Option, pub container_title: Option, -- cgit v1.2.3