51 lines
1.4 KiB
Rust
51 lines
1.4 KiB
Rust
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.12.11
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "auth_permission")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub name: String,
|
|
pub content_type_id: i32,
|
|
pub codename: String,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_many = "super::auth_group_permissions::Entity")]
|
|
AuthGroupPermissions,
|
|
#[sea_orm(
|
|
belongs_to = "super::django_content_type::Entity",
|
|
from = "Column::ContentTypeId",
|
|
to = "super::django_content_type::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
DjangoContentType,
|
|
#[sea_orm(has_many = "super::users_user_permissions::Entity")]
|
|
UsersUserPermissions,
|
|
}
|
|
|
|
impl Related<super::auth_group_permissions::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::AuthGroupPermissions.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::django_content_type::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::DjangoContentType.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::users_user_permissions::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::UsersUserPermissions.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|