diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-08-30 23:14:51 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-08-31 18:19:37 +0300 |
commit | d22f466823192963c22eb8f51ae930cb5af8fa9a (patch) | |
tree | f60f5dc30a76a2fff67ab20b399dafe05e80a024 /libbrep/build-extra.sql | |
parent | 05eeac08b63449925cc2e12d2fdaf937d5fa1bbc (diff) |
Add support for git repositories to brep-load
Diffstat (limited to 'libbrep/build-extra.sql')
-rw-r--r-- | libbrep/build-extra.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbrep/build-extra.sql b/libbrep/build-extra.sql index 96e355c..e0aa92a 100644 --- a/libbrep/build-extra.sql +++ b/libbrep/build-extra.sql @@ -14,7 +14,8 @@ DROP FOREIGN TABLE IF EXISTS build_repository; -- CREATE FOREIGN TABLE build_repository ( name TEXT NOT NULL, - location TEXT NOT NULL, + location_url TEXT NOT NULL, + location_type TEXT NOT NULL, certificate_fingerprint TEXT NULL) SERVER package_server OPTIONS (table_name 'repository'); |