diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:26:39 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:26:39 -0800 |
commit | 0f7fb8806c1a39aa54d0cd051aa48478c1b1c070 (patch) | |
tree | 4e93dd1d39c7fed0f56d7d8ef6b57fea9b60847d /rust/src/database_schema.rs | |
parent | 0182cd1456ca1457747ff1363d9d5c5cf95ee2f7 (diff) | |
download | fatcat-0f7fb8806c1a39aa54d0cd051aa48478c1b1c070.tar.gz fatcat-0f7fb8806c1a39aa54d0cd051aa48478c1b1c070.zip |
impl edit_id change
Diffstat (limited to 'rust/src/database_schema.rs')
-rw-r--r-- | rust/src/database_schema.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/rust/src/database_schema.rs b/rust/src/database_schema.rs index 5db14de5..2777696d 100644 --- a/rust/src/database_schema.rs +++ b/rust/src/database_schema.rs @@ -15,7 +15,7 @@ table! { table! { container_edit (id) { - id -> Int8, + id -> Uuid, editgroup_id -> Uuid, updated -> Timestamptz, ident_id -> Uuid, @@ -50,7 +50,7 @@ table! { table! { creator_edit (id) { - id -> Int8, + id -> Uuid, editgroup_id -> Uuid, updated -> Timestamptz, ident_id -> Uuid, @@ -104,7 +104,7 @@ table! { table! { file_edit (id) { - id -> Int8, + id -> Uuid, editgroup_id -> Uuid, updated -> Timestamptz, ident_id -> Uuid, @@ -154,7 +154,7 @@ table! { table! { fileset_edit (id) { - id -> Int8, + id -> Uuid, editgroup_id -> Uuid, updated -> Timestamptz, ident_id -> Uuid, @@ -224,7 +224,7 @@ table! { table! { release_edit (id) { - id -> Int8, + id -> Uuid, editgroup_id -> Uuid, updated -> Timestamptz, ident_id -> Uuid, @@ -296,7 +296,7 @@ table! { table! { webcapture_edit (id) { - id -> Int8, + id -> Uuid, editgroup_id -> Uuid, updated -> Timestamptz, ident_id -> Uuid, @@ -357,7 +357,7 @@ table! { table! { work_edit (id) { - id -> Int8, + id -> Uuid, editgroup_id -> Uuid, updated -> Timestamptz, ident_id -> Uuid, |