From 5f8241924098b937dd7fdf3ade121a4d34a5a62e Mon Sep 17 00:00:00 2001 From: Marco Lanzara <48531002-marco370@users.noreply.replit.com> Date: Sat, 22 Nov 2025 07:53:02 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Release=20v1.0.30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Tipo: patch - Database schema: database-schema/schema.sql (solo struttura) - Data: 2025-11-22 07:53:02 --- database-schema/schema.sql | 27 ++++++++++++++++++++++++--- version.json | 10 ++++++++-- 2 files changed, 32 insertions(+), 5 deletions(-) diff --git a/database-schema/schema.sql b/database-schema/schema.sql index 8233fe5..2aefe59 100644 --- a/database-schema/schema.sql +++ b/database-schema/schema.sql @@ -2,7 +2,7 @@ -- PostgreSQL database dump -- -\restrict Oqa9TbtPSdxvY1OhLIEjTfOaa96U6ArQTxRQsekwAHxhrMNMgQmXyKGhnlT6XYl +\restrict hJ7h2DRNviWodcRarGLncJjEBKVZqiuBIqNdy38ARwur6ySz5ASzvsi2ArDmEFd -- Dumped from database version 16.9 (415ebe8) -- Dumped by pg_dump version 16.10 @@ -58,7 +58,8 @@ CREATE TABLE public.network_logs ( action text, bytes integer, packets integer, - logged_at timestamp without time zone DEFAULT now() NOT NULL + logged_at timestamp without time zone DEFAULT now() NOT NULL, + router_name text DEFAULT 'unknown'::text NOT NULL ); @@ -79,6 +80,18 @@ CREATE TABLE public.routers ( ); +-- +-- Name: schema_version; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.schema_version ( + id integer DEFAULT 1 NOT NULL, + version integer DEFAULT 0 NOT NULL, + applied_at timestamp without time zone DEFAULT now() NOT NULL, + description text +); + + -- -- Name: training_history; Type: TABLE; Schema: public; Owner: - -- @@ -143,6 +156,14 @@ ALTER TABLE ONLY public.routers ADD CONSTRAINT routers_pkey PRIMARY KEY (id); +-- +-- Name: schema_version schema_version_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.schema_version + ADD CONSTRAINT schema_version_pkey PRIMARY KEY (id); + + -- -- Name: training_history training_history_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- @@ -221,5 +242,5 @@ ALTER TABLE ONLY public.network_logs -- PostgreSQL database dump complete -- -\unrestrict Oqa9TbtPSdxvY1OhLIEjTfOaa96U6ArQTxRQsekwAHxhrMNMgQmXyKGhnlT6XYl +\unrestrict hJ7h2DRNviWodcRarGLncJjEBKVZqiuBIqNdy38ARwur6ySz5ASzvsi2ArDmEFd diff --git a/version.json b/version.json index 7317932..c290964 100644 --- a/version.json +++ b/version.json @@ -1,7 +1,13 @@ { - "version": "1.0.29", - "lastUpdate": "2025-11-22T07:41:57.267Z", + "version": "1.0.30", + "lastUpdate": "2025-11-22T07:53:02.541Z", "changelog": [ + { + "version": "1.0.30", + "date": "2025-11-22", + "type": "patch", + "description": "Deployment automatico v1.0.30" + }, { "version": "1.0.29", "date": "2025-11-22",