nordabiz/database/migrations/098_add_admitted_at_meeting_id.sql
Maciej Pienczyn 4ec8e15c56
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
feat(homepage): redesign events section with 2-column grid, forum topic and new members
Add admitted_at_meeting_id to Company model linking firms to board meetings.
Homepage now shows 2 events (left column) + latest forum topic and new members
admitted at the last board meeting (right column). Responsive single-column on mobile.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 13:50:56 +02:00

6 lines
290 B
SQL

-- Migration 098: Add admitted_at_meeting_id to companies
-- Links companies to the board meeting where they were admitted as members
ALTER TABLE companies ADD COLUMN IF NOT EXISTS admitted_at_meeting_id INTEGER REFERENCES board_meetings(id);
GRANT ALL ON TABLE companies TO nordabiz_app;