Update SeaORM entities and remove warning exception.
This commit is contained in:
		
							parent
							
								
									173e4f89a0
								
							
						
					
					
						commit
						d669bef623
					
				|  | @ -1,8 +1,8 @@ | |||
| //! SeaORM Entity. Generated by sea-orm-codegen 0.9.3
 | ||||
| //! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
 | ||||
| 
 | ||||
| use sea_orm::entity::prelude::*; | ||||
| 
 | ||||
| #[derive(Clone, Debug, PartialEq, DeriveEntityModel)] | ||||
| #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)] | ||||
| #[sea_orm(table_name = "group_data")] | ||||
| pub struct Model { | ||||
|   #[sea_orm(primary_key)] | ||||
|  |  | |||
|  | @ -1,4 +1,4 @@ | |||
| //! SeaORM Entity. Generated by sea-orm-codegen 0.9.3
 | ||||
| //! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
 | ||||
| 
 | ||||
| pub mod prelude; | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,4 +1,4 @@ | |||
| //! SeaORM Entity. Generated by sea-orm-codegen 0.9.3
 | ||||
| //! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
 | ||||
| 
 | ||||
| pub use super::group_data::Entity as GroupData; | ||||
| pub use super::snapshot::Entity as Snapshot; | ||||
|  |  | |||
|  | @ -1,8 +1,8 @@ | |||
| //! SeaORM Entity. Generated by sea-orm-codegen 0.9.3
 | ||||
| //! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
 | ||||
| 
 | ||||
| use sea_orm::entity::prelude::*; | ||||
| 
 | ||||
| #[derive(Clone, Debug, PartialEq, DeriveEntityModel)] | ||||
| #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)] | ||||
| #[sea_orm(table_name = "snapshot")] | ||||
| pub struct Model { | ||||
|   #[sea_orm(primary_key)] | ||||
|  |  | |||
|  | @ -27,7 +27,7 @@ pub mod utilities; | |||
| /// ```
 | ||||
| /// sea-orm-cli generate entity -o source/entities
 | ||||
| /// ```
 | ||||
| #[allow(missing_docs, clippy::derive_partial_eq_without_eq)] | ||||
| #[allow(missing_docs)] | ||||
| pub mod entities; | ||||
| 
 | ||||
| /// The main function.
 | ||||
|  |  | |||
		Reference in New Issue