Files
CookAssistant/cookbook/src/schema.rs

10 lines
169 B
Rust

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