hopr_db_entity/codegen/sqlite/
chain_info.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)] # [sea_orm (table_name = "chain_info")] pub struct Model { # [sea_orm (primary_key)] pub id : i32 , pub last_indexed_block : i32 , # [sea_orm (column_type = "Binary(12)" , nullable)] pub ticket_price : Option < Vec < u8 > > , # [sea_orm (column_type = "Binary(32)" , nullable)] pub channels_dst : Option < Vec < u8 > > , # [sea_orm (column_type = "Binary(32)" , nullable)] pub ledger_dst : Option < Vec < u8 > > , # [sea_orm (column_type = "Binary(32)" , nullable)] pub safe_registry_dst : Option < Vec < u8 > > , pub network_registry_enabled : bool , # [sea_orm (column_type = "Binary(32)" , nullable)] pub chain_checksum : Option < Vec < u8 > > , pub previous_indexed_block_prio_to_checksum_update : i32 , # [sea_orm (column_type = "Float")] pub min_incoming_ticket_win_prob : f32 , }
8
9# [derive (Copy , Clone , Debug , EnumIter , DeriveRelation)] pub enum Relation { }
10
11impl ActiveModelBehavior for ActiveModel { }