chore: drop temp_card table and all associated items (#366)

This commit is contained in:
Sanchith Hegde
2023-01-13 14:09:52 +05:30
committed by GitHub
parent ba5c3efc86
commit 89a1cd0885
22 changed files with 27 additions and 393 deletions

View File

@ -344,18 +344,6 @@ diesel::table! {
}
}
diesel::table! {
use diesel::sql_types::*;
use crate::enums::diesel_exports::*;
temp_card (id) {
id -> Int4,
date_created -> Timestamp,
txn_id -> Nullable<Varchar>,
card_info -> Nullable<Json>,
}
}
diesel::allow_tables_to_appear_in_same_query!(
address,
configs,
@ -372,5 +360,4 @@ diesel::allow_tables_to_appear_in_same_query!(
process_tracker,
refund,
reverse_lookup,
temp_card,
);