hopr_db_entity/codegen/sqlite/
network_eligibility.rs

1//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.12
2
3
4
5use sea_orm :: entity :: prelude :: * ;
6
7# [derive (Clone , Debug , PartialEq , DeriveEntityModel , Eq)] # [sea_orm (table_name = "network_eligibility")] pub struct Model { # [sea_orm (primary_key)] pub id : i32 , # [sea_orm (unique)] pub safe_address : String , }
8
9# [derive (Copy , Clone , Debug , EnumIter , DeriveRelation)] pub enum Relation { }
10
11impl ActiveModelBehavior for ActiveModel { }