Add some new pages /branches and /branch/... as well as a new git_branches table. Also extend the email processing to enter the branch information in to the database.
8 lines
149 B
PL/PgSQL
8 lines
149 B
PL/PgSQL
-- Verify guix-data-service:git_branches on pg
|
|
|
|
BEGIN;
|
|
|
|
SELECT name, commit, git_repository_id, datetime
|
|
FROM git_branches WHERE FALSE;
|
|
|
|
ROLLBACK;
|