blob: 0485237be5fcb2ebc2531816c558a19713bb5e61 (
plain) (
tree)
|
|
#[derive(Debug, Queryable, Serialize, Clone)]
pub struct ProductImg {
pub id: i32,
pub path: String,
}
use super::schema::images;
#[table_name = "images"]
#[derive(Debug, Insertable)]
pub struct NewProductImg {
pub path: String,
}
|