Rust-Programming-Cookbook/Chapter08/orm/src/schema.rs

7 wiersze
79 B
XML

table! {
bookmarks (id) {
id -> Text,
url -> Text,
}
}