diff options
author | Erich Eckner <git@eckner.net> | 2018-01-17 14:54:32 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-01-17 14:54:32 +0100 |
commit | 041139bd471096ddc6be8c8b80c0f5619238dc7a (patch) | |
tree | 99f274d58889c141aeb7ed16ab3c958b365e24e8 /bin/bootstrap-mysql | |
parent | 677ed896b4c2232756068dc5c8e96f398350a341 (diff) | |
download | builder-041139bd471096ddc6be8c8b80c0f5619238dc7a.tar.xz |
bin/mysql-functions, bin/bootstrap-mysql: move `is_blocked` from `binary_packages` to `build_assignments`
Diffstat (limited to 'bin/bootstrap-mysql')
-rwxr-xr-x | bin/bootstrap-mysql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bootstrap-mysql b/bin/bootstrap-mysql index 23cb2d1..3fa2da3 100755 --- a/bin/bootstrap-mysql +++ b/bin/bootstrap-mysql @@ -45,7 +45,6 @@ if [ ! "$1" = 'slim' ]; then ' pkgrel MEDIUMINT' \ ' sub_pkgrel MEDIUMINT' \ ' has_issues BIT' \ - ' is_blocked VARCHAR(128)' \ ' is_tested BIT' \ ' pkgname VARCHAR(64)' \ ' architecture SMALLINT :architectures' \ @@ -66,6 +65,7 @@ if [ ! "$1" = 'slim' ]; then 'build_assignments BIGINT' \ ' package_source BIGINT :package_sources' \ ' architecture SMALLINT :architectures' \ + ' is_blocked VARCHAR(128) NULL' \ ' UNIQUE content package_source architecture' \ 'build_dependency_loops BIGINT' \ ' loop MEDIUMINT' \ |