Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Commit

Permalink
Fix src/schema.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Dec 10, 2023
1 parent 2fc95cc commit ca7fba8
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ diesel::table! {
name -> Text,
version -> Text,
edition -> Int2,
authors -> Array<Nullable<Text>>,
authors -> Array<Text>,
repository -> Text,
description -> Text,
license -> Text,
Expand All @@ -47,9 +47,4 @@ diesel::table! {

diesel::joinable!(ownerships -> users (user_id));

diesel::allow_tables_to_appear_in_same_query!(
officials,
ownerships,
packages,
users,
);
diesel::allow_tables_to_appear_in_same_query!(officials, ownerships, packages, users,);

0 comments on commit ca7fba8

Please sign in to comment.