Skip to content

Commit

Permalink
Added ticket resolution states to trac.sql
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bmispelon committed Feb 9, 2024
1 parent 2392f58 commit aaccafd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tracdb/trac.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
\.



--
Expand Down

0 comments on commit aaccafd

Please sign in to comment.