Skip to content

Commit

Permalink
add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
avdb13 committed Nov 12, 2024
1 parent b62fd86 commit 5dda4a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions migrations/2024-11-12-080606_oauth_pkce/down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE oauth_provider
DROP COLUMN use_pkce;
2 changes: 2 additions & 0 deletions migrations/2024-11-12-080606_oauth_pkce/up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE oauth_provider
ADD COLUMN use_pkce boolean DEFAULT FALSE NOT NULL;

0 comments on commit 5dda4a1

Please sign in to comment.