and templates. Tihs also adds an ADR for using Tailwind. Add a pile of dependencies setup orm, add admin tool admin tool does random pass if none provided add tons of css stuff finish up web skeleton
22 lines
590 B
Rust
22 lines
590 B
Rust
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.12.15
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "user")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub full_name: String,
|
|
pub email: String,
|
|
pub username: String,
|
|
pub password_hash: String,
|
|
pub created: String,
|
|
pub updated: String,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|