use rocket::serde::{Deserialize, Serialize}; use rocket_okapi::okapi::schemars::{self, JsonSchema}; use sea_orm::entity::prelude::*; #[derive( Clone, Debug, PartialEq, Eq, DeriveEntityModel, Deserialize, Serialize, FromForm, JsonSchema, )] #[serde(crate = "rocket::serde")] #[sea_orm(table_name = "posts")] pub struct Model { #[sea_orm(primary_key)] pub id: i32, pub title: String, #[sea_orm(column_type = "Text")] pub text: String, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation {} impl ActiveModelBehavior for ActiveModel {}