AppFlowy/rust-lib/flowy-database/src/schema.rs

9 lines
130 B
Rust
Raw Normal View History

table! {
user_table (id) {
id -> Text,
name -> Text,
password -> Text,
email -> Text,
}
}