23 lines
633 B
Rust
23 lines
633 B
Rust
use crate::{DateTimeUtc, UserId};
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "user_preferences")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub user: UserId,
|
|
pub language: String,
|
|
pub theme: String,
|
|
pub timezone: String,
|
|
pub email_notifications: bool,
|
|
pub in_app_notifications: bool,
|
|
pub created_at: DateTimeUtc,
|
|
pub updated_at: DateTimeUtc,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|