From cd84f3a750e4544b4c31def0fb48545ca058bafb Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 15 May 2018 19:25:07 -0700 Subject: JSONB back to JSON, and skip for container_rev while debugging --- rust/src/database_schema.rs | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'rust/src') diff --git a/rust/src/database_schema.rs b/rust/src/database_schema.rs index 80f8fb3f..1d6b46fc 100644 --- a/rust/src/database_schema.rs +++ b/rust/src/database_schema.rs @@ -9,7 +9,7 @@ table! { table! { container_edit (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, ident_id -> Uuid, rev_id -> Nullable, redirect_id -> Nullable, @@ -29,7 +29,6 @@ table! { table! { container_rev (id) { id -> Int8, - extra_json -> Nullable, name -> Text, parent_ident_id -> Nullable, publisher -> Nullable, @@ -40,7 +39,7 @@ table! { table! { creator_edit (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, ident_id -> Uuid, rev_id -> Nullable, redirect_id -> Nullable, @@ -60,7 +59,7 @@ table! { table! { creator_rev (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, name -> Text, orcid -> Nullable, } @@ -69,7 +68,7 @@ table! { table! { editgroup (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, editor_id -> Int8, description -> Nullable, } @@ -87,7 +86,7 @@ table! { table! { file_edit (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, ident_id -> Uuid, rev_id -> Nullable, redirect_id -> Nullable, @@ -114,7 +113,7 @@ table! { table! { file_rev (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, size -> Nullable, sha1 -> Nullable, url -> Nullable, @@ -134,7 +133,7 @@ table! { table! { release_edit (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, ident_id -> Uuid, rev_id -> Nullable, redirect_id -> Nullable, @@ -164,7 +163,7 @@ table! { table! { release_rev (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, work_ident_id -> Uuid, container_ident_id -> Nullable, title -> Text, @@ -181,7 +180,7 @@ table! { table! { work_edit (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, ident_id -> Uuid, rev_id -> Nullable, redirect_id -> Nullable, @@ -201,7 +200,7 @@ table! { table! { work_rev (id) { id -> Int8, - extra_json -> Nullable, + extra_json -> Nullable, work_type -> Nullable, primary_release_id -> Nullable, } -- cgit v1.2.3