Can create new accommodations using the API
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2024-05-23 21:20:14 +02:00
parent 2f1df6c117
commit c4fadce69f
12 changed files with 248 additions and 18 deletions

View File

@@ -6,9 +6,11 @@ diesel::table! {
family_id -> Int4,
time_create -> Int8,
time_update -> Int8,
need_validation -> Nullable<Bool>,
#[max_length = 50]
name -> Varchar,
need_validation -> Bool,
description -> Nullable<Text>,
open_to_reservation -> Nullable<Bool>,
open_to_reservations -> Bool,
}
}