🚀 Release v1.0.30
- Tipo: patch - Database schema: database-schema/schema.sql (solo struttura) - Data: 2025-11-22 07:53:02
This commit is contained in:
parent
7b85fcc020
commit
5f82419240
@ -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
|
||||
|
||||
|
||||
10
version.json
10
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",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user