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

7 wiersze
79 B
Rust
Czysty Zwykły widok Historia

2019-07-26 08:13:06 +00:00
table! {
bookmarks (id) {
id -> Text,
url -> Text,
}
}