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
Dodano pole previous_years_debt w modelu Company. Kolumna widoczna w widoku rocznym składek — kliknięcie kwoty otwiera pole edycji. Legenda zaktualizowana. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
280 B
SQL
8 lines
280 B
SQL
-- Migration 088: Add previous_years_debt column to companies
|
|
-- Manual field for tracking arrears from previous years
|
|
|
|
ALTER TABLE companies ADD COLUMN IF NOT EXISTS previous_years_debt NUMERIC(10,2) DEFAULT 0;
|
|
|
|
-- Grant permissions
|
|
GRANT ALL ON TABLE companies TO nordabiz_app;
|