- Notifications
You must be signed in to change notification settings - Fork906
feat: add organization scope to shared ports#18277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- Note: PostgreSQL does not support removing enum values directly. | ||
-- This migration cannot be easily reversed without recreating the enum type. | ||
-- In practice, this would require: | ||
-- 1. Creating a new enum without 'organization' | ||
-- 2. Updating all columns to use the new enum | ||
-- 3. Dropping the old enum | ||
-- 4. Renaming the new enum | ||
-- For safety, we leave this as a no-op migration. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- Add 'organization' value to app_sharing_level enum | ||
ALTER TYPE app_sharing_level ADD VALUE 'organization'; |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.