|
| 1 | +diff --git a/crates/diesel_models/src/schema.rs b/crates/diesel_models/src/schema.rs |
| 2 | +index 55f8e935b..469ad1d22 100644 |
| 3 | +--- a/crates/diesel_models/src/schema.rs |
| 4 | ++++ b/crates/diesel_models/src/schema.rs |
| 5 | +@@ -5,7 +5,6 @@ diesel::table! { |
| 6 | + use crate::enums::diesel_exports::*; |
| 7 | + |
| 8 | + address (address_id) { |
| 9 | +- id -> Nullable<Int4>, |
| 10 | + #[max_length = 64] |
| 11 | + address_id -> Varchar, |
| 12 | + #[max_length = 128] |
| 13 | +@@ -129,7 +128,6 @@ diesel::table! { |
| 14 | + use crate::enums::diesel_exports::*; |
| 15 | + |
| 16 | + blocklist (merchant_id, fingerprint_id) { |
| 17 | +- id -> Int4, |
| 18 | + #[max_length = 64] |
| 19 | + merchant_id -> Varchar, |
| 20 | + #[max_length = 64] |
| 21 | +@@ -284,7 +282,6 @@ diesel::table! { |
| 22 | + use crate::enums::diesel_exports::*; |
| 23 | + |
| 24 | + customers (customer_id, merchant_id) { |
| 25 | +- id -> Int4, |
| 26 | + #[max_length = 64] |
| 27 | + customer_id -> Varchar, |
| 28 | + #[max_length = 64] |
| 29 | +@@ -337,7 +334,6 @@ diesel::table! { |
| 30 | + use crate::enums::diesel_exports::*; |
| 31 | + |
| 32 | + dispute (dispute_id) { |
| 33 | +- id -> Int4, |
| 34 | + #[max_length = 64] |
| 35 | + dispute_id -> Varchar, |
| 36 | + #[max_length = 255] |
| 37 | +@@ -588,7 +584,6 @@ diesel::table! { |
| 38 | + use crate::enums::diesel_exports::*; |
| 39 | + |
| 40 | + mandate (mandate_id) { |
| 41 | +- id -> Int4, |
| 42 | + #[max_length = 64] |
| 43 | + mandate_id -> Varchar, |
| 44 | + #[max_length = 64] |
| 45 | +@@ -634,7 +629,6 @@ diesel::table! { |
| 46 | + use crate::enums::diesel_exports::*; |
| 47 | + |
| 48 | + merchant_account (merchant_id) { |
| 49 | +- id -> Int4, |
| 50 | + #[max_length = 64] |
| 51 | + merchant_id -> Varchar, |
| 52 | + #[max_length = 255] |
| 53 | +@@ -678,7 +672,6 @@ diesel::table! { |
| 54 | + use crate::enums::diesel_exports::*; |
| 55 | + |
| 56 | + merchant_connector_account (merchant_connector_id) { |
| 57 | +- id -> Int4, |
| 58 | + #[max_length = 64] |
| 59 | + merchant_id -> Varchar, |
| 60 | + #[max_length = 64] |
| 61 | +@@ -741,7 +734,6 @@ diesel::table! { |
| 62 | + use crate::enums::diesel_exports::*; |
| 63 | + |
| 64 | + payment_attempt (attempt_id, merchant_id) { |
| 65 | +- id -> Nullable<Int4>, |
| 66 | + #[max_length = 64] |
| 67 | + payment_id -> Varchar, |
| 68 | + #[max_length = 64] |
| 69 | +@@ -832,7 +824,6 @@ diesel::table! { |
| 70 | + use crate::enums::diesel_exports::*; |
| 71 | + |
| 72 | + payment_intent (payment_id, merchant_id) { |
| 73 | +- id -> Nullable<Int4>, |
| 74 | + #[max_length = 64] |
| 75 | + payment_id -> Varchar, |
| 76 | + #[max_length = 64] |
| 77 | +@@ -935,7 +926,6 @@ diesel::table! { |
| 78 | + use crate::enums::diesel_exports::*; |
| 79 | + |
| 80 | + payment_methods (payment_method_id) { |
| 81 | +- id -> Int4, |
| 82 | + #[max_length = 64] |
| 83 | + customer_id -> Varchar, |
| 84 | + #[max_length = 64] |
| 85 | +@@ -1100,7 +1090,6 @@ diesel::table! { |
| 86 | + use crate::enums::diesel_exports::*; |
| 87 | + |
| 88 | + refund (merchant_id, refund_id) { |
| 89 | +- id -> Int4, |
| 90 | + #[max_length = 64] |
| 91 | + internal_reference_id -> Varchar, |
| 92 | + #[max_length = 64] |
| 93 | +@@ -1169,7 +1158,6 @@ diesel::table! { |
| 94 | + use crate::enums::diesel_exports::*; |
| 95 | + |
| 96 | + roles (role_id) { |
| 97 | +- id -> Int4, |
| 98 | + #[max_length = 64] |
| 99 | + role_name -> Varchar, |
| 100 | + #[max_length = 64] |
| 101 | +@@ -1276,7 +1263,6 @@ diesel::table! { |
| 102 | + use crate::enums::diesel_exports::*; |
| 103 | + |
| 104 | + users (user_id) { |
| 105 | +- id -> Int4, |
| 106 | + #[max_length = 64] |
| 107 | + user_id -> Varchar, |
| 108 | + #[max_length = 255] |
0 commit comments