4 lines
192 B
SQL
Executable File
4 lines
192 B
SQL
Executable File
-- Migration to add total_amount to finance_collection_concepts table
|
|
ALTER TABLE `finance_collection_concepts`
|
|
ADD COLUMN `total_amount` DECIMAL(10, 2) NULL DEFAULT NULL AFTER `description`;
|