Skip to content

Commit 98e56df

Browse files
committed
Actualiza
1 parent 3dc4358 commit 98e56df

File tree

3 files changed

+19
-28
lines changed

3 files changed

+19
-28
lines changed

Gemfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ GEM
214214
railties (>= 6.0.0)
215215
kgio (2.11.4)
216216
libxml-ruby (4.1.1)
217-
loofah (2.21.3)
217+
loofah (2.21.4)
218218
crass (~> 1.0.2)
219219
nokogiri (>= 1.12.0)
220220
mail (2.8.1)
@@ -232,7 +232,7 @@ GEM
232232
mini_portile2 (2.8.4)
233233
minitest (5.20.0)
234234
msgpack (1.7.2)
235-
net-imap (0.4.0)
235+
net-imap (0.4.1)
236236
date
237237
net-protocol
238238
net-pop (0.1.2)
@@ -260,7 +260,7 @@ GEM
260260
prawnto_2 (0.3.1)
261261
prawn (>= 1.0.0)
262262
rails (>= 3.2)
263-
psych (5.1.0)
263+
psych (5.1.1)
264264
stringio
265265
public_suffix (5.0.3)
266266
puma (6.4.0)
@@ -307,7 +307,7 @@ GEM
307307
rdoc (6.5.0)
308308
psych (>= 4.0.0)
309309
redcarpet (3.6.0)
310-
regexp_parser (2.8.1)
310+
regexp_parser (2.8.2)
311311
reline (0.3.9)
312312
io-console (~> 0.5)
313313
responders (3.1.0)
@@ -326,7 +326,7 @@ GEM
326326
sprockets (> 3.0)
327327
sprockets-rails
328328
tilt
329-
selenium-webdriver (4.13.1)
329+
selenium-webdriver (4.14.0)
330330
rexml (~> 3.2, >= 3.2.5)
331331
rubyzip (>= 1.2.2, < 3.0)
332332
websocket (~> 1.0)
@@ -347,7 +347,7 @@ GEM
347347
actionpack (>= 5.2)
348348
activesupport (>= 5.2)
349349
sprockets (>= 3.0.0)
350-
stimulus-rails (1.2.2)
350+
stimulus-rails (1.3.0)
351351
railties (>= 6.0.0)
352352
stringio (3.0.8)
353353
terrapin (0.6.0)
@@ -356,7 +356,7 @@ GEM
356356
tilt (2.3.0)
357357
timeout (0.4.0)
358358
ttfunk (1.7.0)
359-
turbo-rails (1.4.0)
359+
turbo-rails (1.5.0)
360360
actionpack (>= 6.0.0)
361361
activejob (>= 6.0.0)
362362
railties (>= 6.0.0)

db/structure.sql

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ SET xmloption = content;
99
SET client_min_messages = warning;
1010
SET row_security = off;
1111

12+
--
13+
-- Name: public; Type: SCHEMA; Schema: -; Owner: -
14+
--
15+
16+
-- *not* creating schema, since initdb creates it
17+
18+
1219
--
1320
-- Name: es_co_utf_8; Type: COLLATION; Schema: public; Owner: -
1421
--
@@ -3249,8 +3256,8 @@ CREATE VIEW public.sivel2_gen_conscaso1 AS
32493256
array_to_string(ARRAY( SELECT (((((((supracategoria.tviolencia_id)::text || ':'::text) || categoria.supracategoria_id) || ':'::text) || categoria.id) || ' '::text) || (categoria.nombre)::text)
32503257
FROM public.sivel2_gen_categoria categoria,
32513258
public.sivel2_gen_supracategoria supracategoria,
3252-
public.sivel2_gen_acto acto
3253-
WHERE ((categoria.id = acto.categoria_id) AND (supracategoria.id = categoria.supracategoria_id) AND (acto.caso_id = caso.id))), ', '::text) AS tipificacion
3259+
public.sivel2_gen_acto
3260+
WHERE ((categoria.id = sivel2_gen_acto.categoria_id) AND (supracategoria.id = categoria.supracategoria_id) AND (sivel2_gen_acto.caso_id = caso.id))), ', '::text) AS tipificacion
32543261
FROM public.sivel2_gen_caso caso;
32553262

32563263

@@ -6387,14 +6394,6 @@ ALTER TABLE ONLY public.sivel2_gen_categoria
63876394
ADD CONSTRAINT categoria_contada_en_fkey FOREIGN KEY (contadaen) REFERENCES public.sivel2_gen_categoria(id);
63886395

63896396

6390-
--
6391-
-- Name: sivel2_gen_categoria categoria_contadaen_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
6392-
--
6393-
6394-
ALTER TABLE ONLY public.sivel2_gen_categoria
6395-
ADD CONSTRAINT categoria_contadaen_fkey FOREIGN KEY (contadaen) REFERENCES public.sivel2_gen_categoria(id);
6396-
6397-
63986397
--
63996398
-- Name: sivel2_gen_caso_categoria_presponsable categoria_p_responsable_caso_id_categoria_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
64006399
--
@@ -7203,14 +7202,6 @@ ALTER TABLE ONLY public.msip_persona
72037202
ADD CONSTRAINT persona_tdocumento_id_fkey FOREIGN KEY (tdocumento_id) REFERENCES public.msip_tdocumento(id);
72047203

72057204

7206-
--
7207-
-- Name: sivel2_gen_presponsable presponsable_papa_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
7208-
--
7209-
7210-
ALTER TABLE ONLY public.sivel2_gen_presponsable
7211-
ADD CONSTRAINT presponsable_papa_fkey FOREIGN KEY (papa_id) REFERENCES public.sivel2_gen_presponsable(id);
7212-
7213-
72147205
--
72157206
-- Name: sivel2_gen_caso_presponsable presuntos_responsables_caso_id_caso_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
72167207
--

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -477,9 +477,9 @@ resolve-from@^4.0.0:
477477
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
478478

479479
resolve@^1.19.0:
480-
version "1.22.6"
481-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362"
482-
integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==
480+
version "1.22.8"
481+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
482+
integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
483483
dependencies:
484484
is-core-module "^2.13.0"
485485
path-parse "^1.0.7"

0 commit comments

Comments
 (0)