table! { ingredients (id) { id -> Integer, alias -> Text, } } table! { recipes (id) { id -> Integer, title -> Text, category -> SmallInt, ingredients -> Text, preparation -> Text, } } allow_tables_to_appear_in_same_query!( ingredients, recipes, );