Skip to content

Commit

Permalink
Lagt til kafka_keys_audit-tabell
Browse files Browse the repository at this point in the history
  • Loading branch information
naviktthomas committed Nov 21, 2024
1 parent fb04841 commit 912d18b
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
create table kafka_keys_audit
(
id bigint GENERATED ALWAYS AS IDENTITY,
identitetsnummer VARCHAR(255) NOT NULL,
status VARCHAR(50) NOT NULL,
detaljer VARCHAR(255),
tidspunkt TIMESTAMP(6) NOT NULL,
constraint kafka_keys_audit_pk primary key (id),
constraint kafka_keys_audit_identitet_fk foreign key (identitetsnummer) references Identitet (identitetsnummer)
);

0 comments on commit 912d18b

Please sign in to comment.