Some checks failed
Run Tests / test (push) Failing after 5m2s
- Introduced a new template for currency overview and management (`currencies.html`). - Updated footer to include attribution to AllYouCanGET. - Added "Currencies" link to the main navigation header. - Implemented end-to-end tests for currency creation, update, and activation toggling. - Created unit tests for currency API endpoints, including creation, updating, and activation toggling. - Added a fixture to seed default currencies for testing. - Enhanced database setup tests to ensure proper seeding and migration handling.
30 lines
848 B
PL/PgSQL
30 lines
848 B
PL/PgSQL
-- CalMiner Migration: add currency and unit metadata columns
|
|
-- Date: 2025-10-21
|
|
-- Purpose: align persisted schema with API changes introducing currency selection for
|
|
-- CAPEX/OPEX costs and unit selection for consumption/production records.
|
|
|
|
BEGIN;
|
|
|
|
-- CAPEX / OPEX
|
|
ALTER TABLE capex
|
|
ADD COLUMN IF NOT EXISTS currency_code VARCHAR(3) NOT NULL DEFAULT 'USD';
|
|
|
|
ALTER TABLE opex
|
|
ADD COLUMN IF NOT EXISTS currency_code VARCHAR(3) NOT NULL DEFAULT 'USD';
|
|
|
|
-- Consumption tracking
|
|
ALTER TABLE consumption
|
|
ADD COLUMN IF NOT EXISTS unit_name VARCHAR(64);
|
|
|
|
ALTER TABLE consumption
|
|
ADD COLUMN IF NOT EXISTS unit_symbol VARCHAR(16);
|
|
|
|
-- Production output
|
|
ALTER TABLE production_output
|
|
ADD COLUMN IF NOT EXISTS unit_name VARCHAR(64);
|
|
|
|
ALTER TABLE production_output
|
|
ADD COLUMN IF NOT EXISTS unit_symbol VARCHAR(16);
|
|
|
|
COMMIT;
|