8 lines
362 B
MySQL
8 lines
362 B
MySQL
|
|
-- Migration 187: Customer-specific standard hourly rate
|
||
|
|
-- Allows setting default time price per customer on customer profile.
|
||
|
|
|
||
|
|
ALTER TABLE customers
|
||
|
|
ADD COLUMN IF NOT EXISTS standard_hourly_rate NUMERIC(10,2) NOT NULL DEFAULT 1200.00;
|
||
|
|
|
||
|
|
COMMENT ON COLUMN customers.standard_hourly_rate IS 'Customer-specific default hourly rate used in time-to-order pricing.';
|