mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
reservation: add missing BaseDB interface method
Method InsertReservationUpdate was missing in the interface.
This commit is contained in:
parent
91507d8633
commit
8d8cd9129f
1 changed files with 4 additions and 0 deletions
|
|
@ -35,6 +35,10 @@ type BaseDB interface {
|
|||
// made.
|
||||
GetReservations(ctx context.Context) ([]sqlc.Reservation, error)
|
||||
|
||||
// InsertReservationUpdate inserts a new reservation update.
|
||||
InsertReservationUpdate(ctx context.Context,
|
||||
arg sqlc.InsertReservationUpdateParams) error
|
||||
|
||||
// UpdateReservation updates a reservation.
|
||||
UpdateReservation(ctx context.Context,
|
||||
arg sqlc.UpdateReservationParams) error
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue