aboutsummaryrefslogtreecommitdiff
path: root/src/db/schema.rs
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2019-03-08 18:40:48 -0500
committerNathan Perry <avaglir@gmail.com>2019-03-08 18:41:19 -0500
commit87f10c3fb0c9f0d5794136124690bee5c5bef765 (patch)
tree0906ddaac845ba0a6f5cf49ac5548cd8194042f3 /src/db/schema.rs
parenta541f56b335fc66816205e034e97bfbf047ffaf7 (diff)
remove old oauth model and schema block
Diffstat (limited to 'src/db/schema.rs')
-rw-r--r--src/db/schema.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/db/schema.rs b/src/db/schema.rs
index 9a67cec..01ec1d0 100644
--- a/src/db/schema.rs
+++ b/src/db/schema.rs
@@ -17,16 +17,6 @@ table! {
}
table! {
- google_oauth_tokens (id) {
- id -> Int4,
- token -> Varchar,
- refresh_token -> Varchar,
- expiration -> Timestamp,
- created -> Timestamp,
- }
-}
-
-table! {
images (id) {
id -> Int4,
data -> Bytea,
@@ -88,7 +78,6 @@ joinable!(invocation_records -> memes (meme_id));
allow_tables_to_appear_in_same_query!(
audio,
audit_records,
- google_oauth_tokens,
images,
invocation_records,
memes,