@@ -138,6 +138,38 @@ table! {
138
138
}
139
139
}
140
140
141
+ table ! {
142
+ /// Representation of the `crate_owner_invitations` table.
143
+ ///
144
+ /// (Automatically generated by Diesel.)
145
+ crate_owner_invitations ( invited_user_id, crate_id) {
146
+ /// The `invited_user_id` column of the `crate_owner_invitations` table.
147
+ ///
148
+ /// Its SQL type is `Int4`.
149
+ ///
150
+ /// (Automatically generated by Diesel.)
151
+ invited_user_id -> Int4 ,
152
+ /// The `invited_by_user_id` column of the `crate_owner_invitations` table.
153
+ ///
154
+ /// Its SQL type is `Int4`.
155
+ ///
156
+ /// (Automatically generated by Diesel.)
157
+ invited_by_user_id -> Int4 ,
158
+ /// The `crate_id` column of the `crate_owner_invitations` table.
159
+ ///
160
+ /// Its SQL type is `Int4`.
161
+ ///
162
+ /// (Automatically generated by Diesel.)
163
+ crate_id -> Int4 ,
164
+ /// The `created_at` column of the `crate_owner_invitations` table.
165
+ ///
166
+ /// Its SQL type is `Timestamp`.
167
+ ///
168
+ /// (Automatically generated by Diesel.)
169
+ created_at -> Timestamp ,
170
+ }
171
+ }
172
+
141
173
table ! {
142
174
/// Representation of the `crate_owners` table.
143
175
///
@@ -720,3 +752,4 @@ joinable!(version_downloads -> versions (version_id));
720
752
joinable ! ( crate_owners -> teams ( owner_id) ) ;
721
753
joinable ! ( crate_owners -> users ( owner_id) ) ;
722
754
joinable ! ( readme_rendering -> versions ( version_id) ) ;
755
+ joinable ! ( crate_owner_invitations -> crates ( crate_id) ) ;
0 commit comments