Skip to content

Commit fe459ea

Browse files
zepatrikory-bot
authored andcommitted
fix: migration problems
GitOrigin-RevId: 38f30ae2fbc66a36cdeef5bc8b66e4b10ba23fa5
1 parent db90374 commit fe459ea

10 files changed

+5
-2
lines changed

.reports/dep-licenses.csv

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
"github.com/ory/x","Apache-2.0"
44
"github.com/stretchr/testify","MIT"
55
"go.opentelemetry.io/otel/sdk","Apache-2.0"
6-
"go.opentelemetry.io/otel/sdk","BSD-3-Clause"
76

persistence/sql/migrations/20241129111700000000_add_refresh_token_access_token_link.autocommit.up.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE hydra_oauth2_refresh DROP COLUMN IF EXISTS access_token_signature;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE hydra_oauth2_refresh ADD COLUMN IF NOT EXISTS access_token_signature VARCHAR(255) DEFAULT NULL;

persistence/sql/migrations/20241129111700000000_add_refresh_token_access_token_link.autocommit.down.sql renamed to persistence/sql/migrations/20241129111700000000_add_refresh_token_access_token_link.down.sql

File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE hydra_oauth2_refresh ADD COLUMN access_token_signature VARCHAR(255) DEFAULT NULL;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE hydra_oauth2_authentication_session DROP COLUMN IF EXISTS expires_at;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE hydra_oauth2_authentication_session ADD COLUMN IF NOT EXISTS expires_at TIMESTAMP NULL;

persistence/sql/migrations/20250610132310000001_more_expire_columns.autocommit.down.sql renamed to persistence/sql/migrations/20250610132310000001_more_expire_columns.down.sql

File renamed without changes.

persistence/sql/migrations/20250610132310000001_more_expire_columns.autocommit.up.sql renamed to persistence/sql/migrations/20250610132310000001_more_expire_columns.up.sql

File renamed without changes.

0 commit comments

Comments
 (0)