4 lines
152 B
MySQL
4 lines
152 B
MySQL
|
|
ALTER TABLE `complex_rooms`
|
||
|
|
ADD COLUMN `installment_price` DECIMAL(15, 2) DEFAULT NULL;
|
||
|
|
ALTER TABLE complex_rooms ALTER total_amount SET DEFAULT 0;
|