Update h2 and flyway

Sadly it is necessary to fix an existing changeset for H2.
This commit is contained in:
eikek
2022-08-09 17:44:19 +02:00
parent f0a99db8a2
commit aac6f69ea2
5 changed files with 390 additions and 308 deletions

View File

@ -1,5 +1,5 @@
-- add new id column
alter table "collective" add column "id" bigserial not null;
alter table "collective" add column "id" bigserial not null unique;
create unique index "collective_id_idx" on "collective"("id");
-- change references: source

View File

@ -1,2 +1,2 @@
ALTER TABLE "joblog"
ADD COLUMN "counter" bigint auto_increment;
ADD COLUMN "counter" bigint generated always as identity;

File diff suppressed because one or more lines are too long