drop unused last_successful_update field from node table (#1754)

This commit is contained in:
Kristoffer Dalby 2024-02-18 23:22:07 +01:00 committed by GitHub
parent 384ca03208
commit 3f162c212c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 387 additions and 403 deletions

View file

@ -5,7 +5,7 @@ option go_package = "github.com/juanfont/headscale/gen/go/v1";
import "google/protobuf/timestamp.proto";
message PreAuthKey {
string user = 1;
string user = 1;
string id = 2;
string key = 3;
bool reusable = 4;
@ -17,7 +17,7 @@ message PreAuthKey {
}
message CreatePreAuthKeyRequest {
string user = 1;
string user = 1;
bool reusable = 2;
bool ephemeral = 3;
google.protobuf.Timestamp expiration = 4;
@ -30,7 +30,7 @@ message CreatePreAuthKeyResponse {
message ExpirePreAuthKeyRequest {
string user = 1;
string key = 2;
string key = 2;
}
message ExpirePreAuthKeyResponse {