Skip to content

Commit 90be388

Browse files
authored
Merge pull request #23 from stenwire/main
feat: Comment out adk columns on
2 parents a4c2c62 + 9284cfb commit 90be388

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ on:
99
env:
1010
REGISTRY: ghcr.io
1111
# Project prefix – change this in repo secrets/variables to rename everything
12-
PROJECT_PREFIX: "taimako"
12+
PROJECT_PREFIX: "taimako" # Add to github repo actions variables
1313

1414
# Container and network names (derived from prefix)
15-
POSTGRES_CONTAINER: ${{ secrets.POSTGRES_HOST }}
15+
POSTGRES_CONTAINER: ${{ vars.PROJECT_PREFIX }}_postgres
1616
BACKEND_CONTAINER: ${{ vars.PROJECT_PREFIX }}_backend
1717
FRONTEND_CONTAINER: ${{ vars.PROJECT_PREFIX }}_frontend
1818
DOCKER_NETWORK: ${{ vars.PROJECT_PREFIX }}_network

backend/alembic/versions/bcb063b582c0_added_logo_url_column_to_widgetsettings.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
def upgrade() -> None:
2222
"""Upgrade schema."""
2323
# ### commands auto generated by Alembic - please adjust! ###
24-
op.drop_table('app_states')
25-
op.drop_table('events')
26-
op.drop_table('sessions')
27-
op.drop_table('user_states')
24+
# op.drop_table('app_states')
25+
# op.drop_table('events')
26+
# op.drop_table('sessions')
27+
# op.drop_table('user_states')
2828
with op.batch_alter_table('widget_settings', schema=None) as batch_op:
2929
batch_op.add_column(sa.Column('logo_url', sa.String(), nullable=True))
3030

0 commit comments

Comments
 (0)