| 24 | #[derive(Queryable, Selectable, Identifiable, Insertable, AsChangeset)] |
| 25 | #[diesel(table_name = github_installation)] |
| 26 | pub struct GithubInstallation { |
| 27 | pub id: i64, |
| 28 | pub owner_id: i64, |
| 29 | pub disabled: bool, |
| 30 | } |
| 31 | |
| 32 | #[derive(Queryable, Selectable, Identifiable, Insertable, AsChangeset)] |
| 33 | #[diesel(table_name = github_owner)] |
nothing calls this directly
no outgoing calls
no test coverage detected