Added migration mgmt with goose.
This commit is contained in:
@ -12,12 +12,6 @@ type Querier interface {
|
||||
CreatePayment(ctx context.Context, arg CreatePaymentParams) (Payment, error)
|
||||
CreateSite(ctx context.Context, arg CreateSiteParams) (Site, error)
|
||||
CreateUser(ctx context.Context, arg CreateUserParams) (User, error)
|
||||
// THIS IS NOT USED YET
|
||||
// -- name: UpdateSiteDomain :one
|
||||
// UPDATE sites
|
||||
// SET domain = ?
|
||||
// WHERE id = ?
|
||||
// RETURNING *;
|
||||
DeleteSite(ctx context.Context, id int64) error
|
||||
DeleteUser(ctx context.Context, id int64) error
|
||||
GetPaymentByID(ctx context.Context, id int64) (Payment, error)
|
||||
|
Reference in New Issue
Block a user