sci-cream 0.0.2

Library that facilitates the mathematical analysis of ice cream mixes and their properties.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Diesel schema for the `ingredients` table.
//!
//! This module is only compiled when the `diesel` feature is enabled.

#[cfg(feature = "diesel")]
diesel::table! {
    #[allow(missing_docs)] // WIP, @todo
    ingredients (id) {
        id -> Int4,
        name -> Varchar,
        category -> Varchar,
        spec -> Varchar,
    }
}