22 lines
330 B
Rust
22 lines
330 B
Rust
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,
|
|
);
|