mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2026-05-08 09:38:55 -04:00
Set up proper DB migrations and fix remaining mobile responsive issues
Migrations: - drizzle.config.ts: add out: './drizzle' so drizzle-kit generate writes SQL migration files instead of only supporting push - drizzle/0000_glossy_magneto.sql: initial migration capturing all 9 current tables (users, accounts, sessions, verification_tokens, sso_providers, clients, businesses, invoices, invoice_items) - src/server/db/migrate.ts: programmatic runner using drizzle-orm's migrate() — tracks applied migrations in __drizzle_migrations, safe to run on every deploy - package.json: db:migrate now runs the programmatic runner instead of drizzle-kit migrate (CLI requires devDeps at runtime) - start.sh: replace drizzle-kit push with bun src/server/db/migrate.ts - Dockerfile: copy drizzle/ folder into the runner image so migrations are available at container startup Mobile fixes: - data-table.tsx: pagination buttons grow from 32px to 40px on mobile (h-10 w-10 md:h-8 md:w-8) to meet 44px touch-target guidelines - floating-action-bar.tsx: stack left-content + action buttons to column layout on narrow screens (flex-col sm:flex-row), reduce padding on mobile (p-3 sm:p-4) - revenue-chart.tsx: responsive chart height (h-48 md:h-64) so the chart doesn't consume too much vertical space on small screens https://claude.ai/code/session_012sqEgNQpx676isepeoX4Mi
This commit is contained in:
@@ -108,9 +108,8 @@ fi
|
||||
SKIP_DB_MIGRATION=${SKIP_DB_MIGRATION:-false}
|
||||
|
||||
if [ "$SKIP_DB_MIGRATION" != "true" ]; then
|
||||
echo "[start.sh] Applying database migrations (drizzle-kit push via bunx)"
|
||||
# Use bunx so we don't need devDependencies inside the container
|
||||
SKIP_ENV_VALIDATION=1 bunx -y drizzle-kit@0.30.6 push
|
||||
echo "[start.sh] Applying database migrations"
|
||||
SKIP_ENV_VALIDATION=1 bun src/server/db/migrate.ts
|
||||
else
|
||||
echo "[start.sh] Skipping DB migration due to SKIP_DB_MIGRATION=${SKIP_DB_MIGRATION}"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user