2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00
data-service/sqitch/verify/git_branches.sql
Christopher Baines 5028dfe706 Start to handle information about Git branches
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.
2019-05-05 20:06:28 +01:00

9 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;