diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-11-04 19:31:08 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-11-04 21:20:38 +0100 |
| commit | 0f12011861bdca9b3b977dd0cab9105dd319de57 (patch) | |
| tree | 06e0e2837d62cc2aea7be5531b1721e2b23e195e /tracdb | |
| parent | 882f2961a9f4074b330110b9bf686e34502941ff (diff) | |
Upgraded Trac dump to the version 45.
Diffstat (limited to 'tracdb')
| -rw-r--r-- | tracdb/trac.sql | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/tracdb/trac.sql b/tracdb/trac.sql index 13539248..e5920a63 100644 --- a/tracdb/trac.sql +++ b/tracdb/trac.sql @@ -2,8 +2,8 @@ -- PostgreSQL database dump -- --- Dumped from database version 10.20 --- Dumped by pg_dump version 10.20 +-- Dumped from database version 12.12 +-- Dumped by pg_dump version 12.12 SET statement_timeout = 0; SET lock_timeout = 0; @@ -16,23 +16,9 @@ SET xmloption = content; SET client_min_messages = warning; SET row_security = off; --- --- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: --- - -CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; - - --- --- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; - - SET default_tablespace = ''; -SET default_with_oids = false; +SET default_table_access_method = heap; -- -- Name: attachment; Type: TABLE; Schema: public; Owner: code.djangoproject @@ -45,8 +31,7 @@ CREATE TABLE public.attachment ( size integer, "time" bigint, description text, - author text, - ipnr text + author text ); @@ -99,7 +84,8 @@ ALTER TABLE public.component OWNER TO "code.djangoproject"; CREATE TABLE public.enum ( type text NOT NULL, name text NOT NULL, - value text + value text, + description text ); @@ -597,7 +583,6 @@ CREATE TABLE public.wiki ( version integer NOT NULL, "time" bigint, author text, - ipnr text, text text, comment text, readonly integer @@ -773,8 +758,8 @@ ALTER TABLE ONLY public.ticket ALTER COLUMN id SET DEFAULT nextval('public.ticke -- Data for Name: system; Type: TABLE DATA; Schema: public; Owner: code.djangoproject -- -INSERT INTO public.system (name, value) VALUES ('database_version', '41'); INSERT INTO public.system (name, value) VALUES ('spamfilter_version', '4'); +INSERT INTO public.system (name, value) VALUES ('database_version', '45'); -- |
