13 lines
456 B
SQL
13 lines
456 B
SQL
-- CAT production update: room-planning settings
|
|
-- Generated from the comparison of /home/raine/cat/cat_current_2026-09-14.zip
|
|
-- with /var/www/html/cat.
|
|
-- This migration does not alter participant, booking, admin, or price data.
|
|
|
|
USE cat;
|
|
|
|
INSERT INTO pricing_settings (setting_key, price) VALUES
|
|
('room_count_single', 0.00),
|
|
('room_count_double', 0.00),
|
|
('room_count_multi', 0.00)
|
|
ON DUPLICATE KEY UPDATE setting_key = VALUES(setting_key);
|