Plataforma oficial de registro
Inscripción rápida, segura y profesional para eventos de atletismo y carreras pedestres.
Próximas carreras
Cargando eventos…
Panel de control
Panel activo
Oval Crono Events
| # | Nombre | F.Nac | Sexo | Evento | Cat. | Chip | Talla | T.Est. | Teléfono | Club | Pago | Total | Fecha |
|---|
Crea y administra los eventos de carrera.
| Evento | Fecha | Lugar | Precio | Cupos | Inscritos | Acciones |
|---|
📋 SQL — Ejecuta esto en Supabase → SQL Editor
CREATE TABLE eventos ( id uuid DEFAULT gen_random_uuid() PRIMARY KEY, nombre text NOT NULL, descripcion text, fecha date NOT NULL, hora time, lugar text NOT NULL, precio numeric(10,2) NOT NULL DEFAULT 20, categorias text DEFAULT '5K,10K', cupos integer DEFAULT 200, activo boolean DEFAULT true, created_at timestamptz DEFAULT now() ); CREATE TABLE inscritos ( id uuid DEFAULT gen_random_uuid() PRIMARY KEY, evento_id uuid REFERENCES eventos(id), evento_nombre text, nombre text NOT NULL, fecha_nac date, sexo text, telefono text, email text, club text, categoria text, talla text, chip text, tiempo_estimado text, metodo_pago text, total numeric(10,2), created_at timestamptz DEFAULT now() ); ALTER TABLE eventos ENABLE ROW LEVEL SECURITY; ALTER TABLE inscritos ENABLE ROW LEVEL SECURITY; CREATE POLICY "pub read" ON eventos FOR SELECT USING (activo = true); CREATE POLICY "pub insert" ON inscritos FOR INSERT WITH CHECK (true); CREATE POLICY "adm eventos" ON eventos FOR ALL USING (true); CREATE POLICY "adm inscritos" ON inscritos FOR ALL USING (true);