diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-27 00:43:31 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-27 00:43:31 -0800 |
commit | 946c98593cb5346fff3d1aa72c4992376ec20471 (patch) | |
tree | bc0c2613f95203c7c79903cc754f3db8a450df17 /rust/src/database_schema.rs | |
parent | 3e591d8d7f64b1092f68737ebd464be69f7e2490 (diff) | |
download | fatcat-946c98593cb5346fff3d1aa72c4992376ec20471.tar.gz fatcat-946c98593cb5346fff3d1aa72c4992376ec20471.zip |
sql codegen and WIP on auth command
Diffstat (limited to 'rust/src/database_schema.rs')
-rw-r--r-- | rust/src/database_schema.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rust/src/database_schema.rs b/rust/src/database_schema.rs index 2777696d..c240048e 100644 --- a/rust/src/database_schema.rs +++ b/rust/src/database_schema.rs @@ -97,7 +97,10 @@ table! { id -> Uuid, username -> Text, is_admin -> Bool, + is_bot -> Bool, registered -> Timestamptz, + auth_epoch -> Timestamptz, + wrangler_id -> Nullable<Uuid>, active_editgroup_id -> Nullable<Uuid>, } } |