centaurus 0.17.4

A utility library for various use cases.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};

#[sea_orm::model]
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, Serialize, Deserialize)]
#[sea_orm(table_name = "setup")]
pub struct Model {
  #[sea_orm(primary_key)]
  pub id: i32,
  pub admin_group_created: Option<Uuid>,
  pub completed: bool,
}

impl ActiveModelBehavior for ActiveModel {}