Mercurial > ~dholland > hg > swallowtail > index.cgi
view database/init/users.sql @ 41:81851564f552
The initial description, how_to_repeat, and fix go in the first message.
Storing them separately only creates a pile of special cases.
author | David A. Holland |
---|---|
date | Sun, 15 Jun 2014 17:55:56 -0400 |
parents | 90ec9e3b0a6f |
children | 40f64a96481f |
line wrap: on
line source
-- Database user initialization. -- Needs to be done as database superuser. -- -- The users: -- swallowtail_admin: owns the database tables -- swallowtail_writer: has write access -- swallowtail: has readonly access to everything -- swallowtail_public: cannot see confidential PRs -- create user swallowtail_admin; create user swallowtail_writer; create user swallowtail; create user swallowtail_public;