forked from asklyphe-public/asklyphe
		
	
		
			
	
	
		
			24 lines
		
	
	
	
		
			622 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
	
		
			622 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| 
								 | 
							
								//! `SeaORM` Entity, @generated by sea-orm-codegen 1.0.0
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use sea_orm::entity::prelude::*;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
							 | 
						||
| 
								 | 
							
								#[sea_orm(table_name = "verification_code")]
							 | 
						||
| 
								 | 
							
								pub struct Model {
							 | 
						||
| 
								 | 
							
								    #[sea_orm(primary_key, auto_increment = false)]
							 | 
						||
| 
								 | 
							
								    pub id: String,
							 | 
						||
| 
								 | 
							
								    pub user: String,
							 | 
						||
| 
								 | 
							
								    pub set_new_email: bool,
							 | 
						||
| 
								 | 
							
								    #[sea_orm(unique)]
							 | 
						||
| 
								 | 
							
								    pub code: String,
							 | 
						||
| 
								 | 
							
								    pub created_on: DateTime,
							 | 
						||
| 
								 | 
							
								    pub death_date: DateTime,
							 | 
						||
| 
								 | 
							
								    pub used: bool,
							 | 
						||
| 
								 | 
							
								    pub used_on: Option<DateTime>,
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
							 | 
						||
| 
								 | 
							
								pub enum Relation {}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								impl ActiveModelBehavior for ActiveModel {}
							 |