view database/schema/logs.sql @ 35:d18135398d0f

Some clarifications. (in particular, clarify that full access via the web interface is a long-term goal, just not an immediate priority) Regenerating the pdf file will have to wait for PR 48884.
author David A. Holland
date Sun, 08 Jun 2014 19:15:48 -0400
parents cd36b49f4437
children 40f64a96481f
line wrap: on
line source

-- log of administrative changes over time
CREATE TABLE adminlog (
	-- who (null means "swallowtail"), where, when, what, why
	who bigint		null references users (id),
	pr bigint		not null references PRs (id),
	change text		not null,       
	posttime timestamp	not null,
	comment text		not null,

	-- if a message was posted, this is the one
	msgid bigint		null references messages (id)
)
WITHOUT OIDS;