update #703
@@ -81,20 +81,20 @@ pub struct BoatToUpdate<'r> {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
impl Boat {
 | 
					impl Boat {
 | 
				
			||||||
    pub async fn find_by_id(db: &SqlitePool, id: i32) -> Option<Self> {
 | 
					    pub async fn find_by_id(db: &SqlitePool, id: i32) -> Option<Self> {
 | 
				
			||||||
        sqlx::query_as!(Self, "SELECT * FROM boat WHERE id like ?", id)
 | 
					        sqlx::query_as!(Self, "SELECT id, name, amount_seats, location_id, owner, year_built, boatbuilder, default_shipmaster_only_steering, convert_handoperated_possible, default_destination, skull, external, deleted FROM boat WHERE id like ?", id)
 | 
				
			||||||
            .fetch_one(db)
 | 
					            .fetch_one(db)
 | 
				
			||||||
            .await
 | 
					            .await
 | 
				
			||||||
            .ok()
 | 
					            .ok()
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    pub async fn find_by_id_tx(db: &mut Transaction<'_, Sqlite>, id: i32) -> Option<Self> {
 | 
					    pub async fn find_by_id_tx(db: &mut Transaction<'_, Sqlite>, id: i32) -> Option<Self> {
 | 
				
			||||||
        sqlx::query_as!(Self, "SELECT * FROM boat WHERE id like ?", id)
 | 
					        sqlx::query_as!(Self, "SELECT id, name, amount_seats, location_id, owner, year_built, boatbuilder, default_shipmaster_only_steering, convert_handoperated_possible, default_destination, skull, external, deleted FROM boat WHERE id like ?", id)
 | 
				
			||||||
            .fetch_one(db.deref_mut())
 | 
					            .fetch_one(db.deref_mut())
 | 
				
			||||||
            .await
 | 
					            .await
 | 
				
			||||||
            .ok()
 | 
					            .ok()
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    pub async fn find_by_name(db: &SqlitePool, name: String) -> Option<Self> {
 | 
					    pub async fn find_by_name(db: &SqlitePool, name: String) -> Option<Self> {
 | 
				
			||||||
        sqlx::query_as!(Self, "SELECT * FROM boat WHERE name like ?", name)
 | 
					        sqlx::query_as!(Self, "SELECT id, name, amount_seats, location_id, owner, year_built, boatbuilder, default_shipmaster_only_steering, convert_handoperated_possible, default_destination, skull, external, deleted FROM boat WHERE name like ?", name)
 | 
				
			||||||
            .fetch_one(db)
 | 
					            .fetch_one(db)
 | 
				
			||||||
            .await
 | 
					            .await
 | 
				
			||||||
            .ok()
 | 
					            .ok()
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user