-
Notifications
You must be signed in to change notification settings - Fork 32
✨ product's ui config 🗃️ #7217
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pcrespov
merged 14 commits into
ITISFoundation:master
from
pcrespov:is1822/product-ui-config
Feb 13, 2025
Merged
✨ product's ui config 🗃️ #7217
Changes from 9 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
73ceb61
cleanup
pcrespov 5ca1ae5
drafts test
pcrespov ebf044b
api
pcrespov da4a735
services/webserver api version: 0.56.0 → 0.57.0
pcrespov e9683f6
adds col
pcrespov 4cf2f14
migration
pcrespov d8ec193
product repo
pcrespov 9fe66f7
tests
pcrespov ed27bfc
fix
matusdrobuliak66 83c5e0d
minor
pcrespov 41b02a6
cleanup
pcrespov 7af2bfd
fixes migration script
pcrespov 7edb4ad
Merge branch 'master' into is1822/product-ui-config
pcrespov b46b894
Merge branch 'master' into is1822/product-ui-config
odeimaiz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...e/src/simcore_postgres_database/migration/versions/8ec5d2f28966_new_products_ui_column.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| """new products ui column | ||
|
|
||
| Revision ID: 8ec5d2f28966 | ||
| Revises: 68777fdf9539 | ||
| Create Date: 2025-02-12 13:00:37.615966+00:00 | ||
|
|
||
| """ | ||
| import sqlalchemy as sa | ||
| from alembic import op | ||
| from sqlalchemy.dialects import postgresql | ||
|
|
||
| # revision identifiers, used by Alembic. | ||
| revision = "8ec5d2f28966" | ||
| down_revision = "68777fdf9539" | ||
| branch_labels = None | ||
| depends_on = None | ||
|
|
||
|
|
||
| def upgrade(): | ||
| # ### commands auto generated by Alembic - please adjust! ### | ||
| op.alter_column( | ||
| "licensed_resources", | ||
| "licensed_resource_type", | ||
| existing_type=sa.VARCHAR(length=9), | ||
| type_=sa.Enum("VIP_MODEL", name="licensedresourcetype"), | ||
| existing_nullable=False, | ||
| ) | ||
| op.add_column( | ||
| "products", | ||
| sa.Column( | ||
| "ui", | ||
| postgresql.JSONB(astext_type=sa.Text()), | ||
| server_default=sa.text("'{}'::jsonb"), | ||
| nullable=False, | ||
| ), | ||
| ) | ||
| # ### end Alembic commands ### | ||
|
|
||
|
|
||
| def downgrade(): | ||
| # ### commands auto generated by Alembic - please adjust! ### | ||
| op.drop_column("products", "ui") | ||
| op.alter_column( | ||
| "licensed_resources", | ||
| "licensed_resource_type", | ||
| existing_type=sa.Enum("VIP_MODEL", name="licensedresourcetype"), | ||
| type_=sa.VARCHAR(length=9), | ||
| existing_nullable=False, | ||
| ) | ||
| # ### end Alembic commands ### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 0.56.0 | ||
| 0.57.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.