aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/database_schema.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-05-25 19:42:39 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-05-25 19:42:39 -0700
commitf3523b1d900e19911bf0041ac1c75877b0bfc943 (patch)
tree4286885906e7758c4cf6625a369d17b96c4d8e62 /rust/src/database_schema.rs
parentf653c4070a076306825501ddbc27c0634d0e1438 (diff)
downloadfatcat-f3523b1d900e19911bf0041ac1c75877b0bfc943.tar.gz
fatcat-f3523b1d900e19911bf0041ac1c75877b0bfc943.zip
return all edits for an editgroup GET
Diffstat (limited to 'rust/src/database_schema.rs')
-rw-r--r--rust/src/database_schema.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/rust/src/database_schema.rs b/rust/src/database_schema.rs
index 3adbd63a..7d8ff4e1 100644
--- a/rust/src/database_schema.rs
+++ b/rust/src/database_schema.rs
@@ -9,11 +9,11 @@ table! {
table! {
container_edit (id) {
id -> Int8,
- extra_json -> Nullable<Json>,
+ editgroup_id -> Int8,
ident_id -> Uuid,
rev_id -> Nullable<Int8>,
redirect_id -> Nullable<Uuid>,
- editgroup_id -> Int8,
+ extra_json -> Nullable<Json>,
}
}
@@ -39,11 +39,11 @@ table! {
table! {
creator_edit (id) {
id -> Int8,
- extra_json -> Nullable<Json>,
+ editgroup_id -> Int8,
ident_id -> Uuid,
rev_id -> Nullable<Int8>,
redirect_id -> Nullable<Uuid>,
- editgroup_id -> Int8,
+ extra_json -> Nullable<Json>,
}
}
@@ -86,11 +86,11 @@ table! {
table! {
file_edit (id) {
id -> Int8,
- extra_json -> Nullable<Json>,
+ editgroup_id -> Int8,
ident_id -> Uuid,
rev_id -> Nullable<Int8>,
redirect_id -> Nullable<Uuid>,
- editgroup_id -> Int8,
+ extra_json -> Nullable<Json>,
}
}
@@ -134,11 +134,11 @@ table! {
table! {
release_edit (id) {
id -> Int8,
- extra_json -> Nullable<Json>,
+ editgroup_id -> Int8,
ident_id -> Uuid,
rev_id -> Nullable<Int8>,
redirect_id -> Nullable<Uuid>,
- editgroup_id -> Int8,
+ extra_json -> Nullable<Json>,
}
}
@@ -180,11 +180,11 @@ table! {
table! {
work_edit (id) {
id -> Int8,
- extra_json -> Nullable<Json>,
+ editgroup_id -> Int8,
ident_id -> Uuid,
rev_id -> Nullable<Int8>,
redirect_id -> Nullable<Uuid>,
- editgroup_id -> Int8,
+ extra_json -> Nullable<Json>,
}
}