1
0
mirror of https://github.com/google/nomulus synced 2026-01-10 16:00:52 +00:00

Store DatabaseMigrationSchedule in SQL instead of Datastore (#1269)

* Store DatabaseMigrationSchedule in SQL instead of Datastore

This requires messing around with some of the JPA unit test rule
creation since it requires saving / retrieving the schedule pretty much
always (which itself includes the hstore extension).
This commit is contained in:
gbrodman
2021-08-12 15:57:31 -06:00
committed by GitHub
parent 60469479a4
commit 7f733cd16d
36 changed files with 239 additions and 122 deletions

View File

@@ -238,6 +238,12 @@
primary key (scope, type)
);
create table "DatabaseMigrationStateSchedule" (
id int8 not null,
migration_transitions hstore,
primary key (id)
);
create table "DelegationSignerData" (
algorithm int4 not null,
digest bytea not null,