Fix space issue in protobuf that apparently doesn't matter? Also apparently postgres migrations weren't run.

pull/322/head
Jeff Mitchell 6 years ago
parent f3dd62d5d8
commit ee35a92f7f

@ -2703,7 +2703,7 @@ before insert on kms_root_key_version
create table kms_database_key (
private_id wt_private_id primary key,
root_key_id wt_private_id not null
root_key_id wt_private_id not null unique -- there can be only one database dek per root key
references kms_root_key(private_id)
on delete cascade
on update cascade,
@ -2759,7 +2759,7 @@ before insert on kms_database_key_version
create table kms_oplog_key (
private_id wt_private_id primary key,
root_key_id wt_private_id not null
root_key_id wt_private_id not null unique -- there can be only one oplog dek per root key
references kms_root_key(private_id)
on delete cascade
on update cascade,
@ -2815,7 +2815,7 @@ before insert on kms_oplog_key_version
create table kms_session_key (
private_id wt_private_id primary key,
root_key_id wt_private_id not null
root_key_id wt_private_id not null unique -- there can be only one session dek per root key
references kms_root_key(private_id)
on delete cascade
on update cascade,

@ -96,7 +96,7 @@ message Role {
// The grants that this role provides for its principals.
// Output only.
repeated string grant_strings = 110[json_name="grant_strings"];
repeated string grant_strings = 110 [json_name="grant_strings"];
// The parsed grant information.
// Output only.

Loading…
Cancel
Save