-- ========================================
-- 01-create-plans.sql
-- Segunda Carga Masiva Open Insurance
-- ========================================

-- Viaje por Día
INSERT INTO plan_type (slug, name, is_active, created_at, updated_at, deleted_at)
VALUES
('d-30interuniver', 'Viaje por Día 30 InterUniver', 1, NOW(), NOW(), NULL),
('d-60-open-flow', 'Viaje por Día 60 Open Flow', 1, NOW(), NOW(), NULL),
('d-250-open-max', 'Viaje por Día 250 Open Max', 1, NOW(), NOW(), NULL),
('d35-eur-lat-open', 'Viaje por Día 35 EUR/LAT Open', 1, NOW(), NOW(), NULL),
('d50-eur-lat-open', 'Viaje por Día 50 EUR/LAT Open', 1, NOW(), NOW(), NULL),
('d75-eur-lat-open', 'Viaje por Día 75 EUR/LAT Open', 1, NOW(), NOW(), NULL);

-- Viajes Anuales
INSERT INTO plan_type (slug, name, is_active, created_at, updated_at, deleted_at)
VALUES
('m-30-anual-open', 'Viaje Anual 30 Open', 1, NOW(), NOW(), NULL),
('m-60-anual-open', 'Viaje Anual 60 Open', 1, NOW(), NOW(), NULL),
('m-250-anual-open', 'Viaje Anual 250 Open', 1, NOW(), NOW(), NULL);
