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
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>
6 lines
290 B
SQL
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;
|