33 lines
1.0 KiB
Rust
33 lines
1.0 KiB
Rust
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.10
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "comments")]
|
|
pub struct Model {
|
|
pub created_at: DateTimeWithTimeZone,
|
|
pub updated_at: DateTimeWithTimeZone,
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub post_id: Option<Uuid>,
|
|
pub post_slug: Option<String>,
|
|
pub author: Option<String>,
|
|
pub email: Option<String>,
|
|
pub avatar: Option<String>,
|
|
pub ip_address: Option<String>,
|
|
pub user_agent: Option<String>,
|
|
pub referer: Option<String>,
|
|
#[sea_orm(column_type = "Text", nullable)]
|
|
pub content: Option<String>,
|
|
pub scope: String,
|
|
pub paragraph_key: Option<String>,
|
|
pub paragraph_excerpt: Option<String>,
|
|
pub reply_to: Option<Uuid>,
|
|
pub reply_to_comment_id: Option<i32>,
|
|
pub approved: Option<bool>,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {}
|