summaryrefslogtreecommitdiff
path: root/tracdb
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2024-02-09 16:43:12 +0100
committerGitHub <noreply@github.com>2024-02-09 09:43:12 -0600
commitae69b15706244c918949d721b048ac377d810542 (patch)
tree85976497593f993ca144ef031a5f942ef583dad4 /tracdb
parentc71ce3da383d026ae83b7e2d894d09098c3d73dc (diff)
Added ticket resolution states to trac.sql (#1478)
This makes it easier to run Trac locally, as it removes an error message about missing resolutions when first starting it. I copied the values from the admin panel in production.
Diffstat (limited to 'tracdb')
-rw-r--r--tracdb/trac.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/tracdb/trac.sql b/tracdb/trac.sql
index e5920a63..72c3319d 100644
--- a/tracdb/trac.sql
+++ b/tracdb/trac.sql
@@ -668,6 +668,15 @@ ALTER TABLE ONLY public.ticket ALTER COLUMN id SET DEFAULT nextval('public.ticke
-- Data for Name: enum; Type: TABLE DATA; Schema: public; Owner: code.djangoproject
--
+COPY public.enum (type, name, value, description) FROM stdin;
+resolution fixed 1 \N
+resolution invalid 2 \N
+resolution wontfix 3 \N
+resolution duplicate 4 \N
+resolution worksforme 5 \N
+resolution needsinfo 6 \N
+\.
+
--