Skip to content

Commit

Permalink
internal/db: renumber migrations (#4218)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanbrandhorst authored Jan 4, 2024
1 parent ca69b5c commit 84990f8
Show file tree
Hide file tree
Showing 19 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ where
-- migration 07_auth.up.sql This new definition also inserts the sub type's name
-- into the base type. The name column must be on the base type, so the database
-- can ensure that auth method names are unique across all sub types.
-- Replaced in 80/09_auth_method_base_table_updates.up.sql
-- Replaced in 81/09_auth_method_base_table_updates.up.sql
create or replace function insert_auth_method_subtype() returns trigger
as $$
begin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ begin;
-- insert_credential_store_subtype() is a before insert trigger
-- function for subtypes of credential_store.
-- Replaces the insert_credential_store_subtype function defined in 10/03_credential.up.sql
-- Replaced in 80/05_credential_store_base_table_updates.up.sql
-- Replaced in 81/05_credential_store_base_table_updates.up.sql
create or replace function insert_credential_store_subtype() returns trigger
as $$
begin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ begin;
-- insert_credential_library_subtype() is a before insert trigger
-- function for subtypes of credential_library.
-- Replaces the insert_credential_library_subtype function defined in 22/02_credential_type.up.sql
-- Replaced in 80/04_credential_library_base_table_updates.up.sql
-- Replaced in 81/04_credential_library_base_table_updates.up.sql
create or replace function insert_credential_library_subtype() returns trigger
as $$
begin
Expand Down Expand Up @@ -98,7 +98,7 @@ begin;
-- insert_credential_static_subtype() is a before insert trigger
-- function for subtypes of credential_static
-- Replaces the insert_credential_static_subtype function defined in 10/03_credential.up.sql
-- Replaced in 80/03_credential_static_base_table_updates.up.sql
-- Replaced in 81/03_credential_static_base_table_updates.up.sql
create or replace function insert_credential_static_subtype() returns trigger
as $$
begin
Expand Down

0 comments on commit 84990f8

Please sign in to comment.