mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-25 08:22:43 +01:00
15 lines
239 B
Rust
15 lines
239 B
Rust
|
use super::schema::users;
|
||
|
|
||
|
#[derive(Serialize, Queryable)]
|
||
|
pub struct User {
|
||
|
pub id: String,
|
||
|
pub name: String,
|
||
|
}
|
||
|
|
||
|
#[derive(Insertable)]
|
||
|
#[table_name = "users"]
|
||
|
pub struct NewUser<'a> {
|
||
|
pub id: &'a str,
|
||
|
pub name: &'a str,
|
||
|
}
|