diff options
Diffstat (limited to 'rust/src')
-rw-r--r-- | rust/src/database_schema.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/rust/src/database_schema.rs b/rust/src/database_schema.rs index 1d6b46fc..789ed1f3 100644 --- a/rust/src/database_schema.rs +++ b/rust/src/database_schema.rs @@ -9,7 +9,6 @@ table! { table! { container_edit (id) { id -> Int8, - extra_json -> Nullable<Json>, ident_id -> Uuid, rev_id -> Nullable<Int8>, redirect_id -> Nullable<Uuid>, @@ -39,7 +38,6 @@ table! { table! { creator_edit (id) { id -> Int8, - extra_json -> Nullable<Json>, ident_id -> Uuid, rev_id -> Nullable<Int8>, redirect_id -> Nullable<Uuid>, @@ -59,7 +57,6 @@ table! { table! { creator_rev (id) { id -> Int8, - extra_json -> Nullable<Json>, name -> Text, orcid -> Nullable<Text>, } @@ -68,7 +65,6 @@ table! { table! { editgroup (id) { id -> Int8, - extra_json -> Nullable<Json>, editor_id -> Int8, description -> Nullable<Text>, } @@ -86,7 +82,6 @@ table! { table! { file_edit (id) { id -> Int8, - extra_json -> Nullable<Json>, ident_id -> Uuid, rev_id -> Nullable<Int8>, redirect_id -> Nullable<Uuid>, @@ -113,7 +108,6 @@ table! { table! { file_rev (id) { id -> Int8, - extra_json -> Nullable<Json>, size -> Nullable<Int4>, sha1 -> Nullable<Text>, url -> Nullable<Text>, @@ -133,7 +127,6 @@ table! { table! { release_edit (id) { id -> Int8, - extra_json -> Nullable<Json>, ident_id -> Uuid, rev_id -> Nullable<Int8>, redirect_id -> Nullable<Uuid>, @@ -163,7 +156,6 @@ table! { table! { release_rev (id) { id -> Int8, - extra_json -> Nullable<Json>, work_ident_id -> Uuid, container_ident_id -> Nullable<Uuid>, title -> Text, @@ -180,7 +172,6 @@ table! { table! { work_edit (id) { id -> Int8, - extra_json -> Nullable<Json>, ident_id -> Uuid, rev_id -> Nullable<Int8>, redirect_id -> Nullable<Uuid>, @@ -200,7 +191,6 @@ table! { table! { work_rev (id) { id -> Int8, - extra_json -> Nullable<Json>, work_type -> Nullable<Text>, primary_release_id -> Nullable<Uuid>, } |