summaryrefslogtreecommitdiff
path: root/bin/bootstrap-mysql
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-03-20 10:06:47 +0100
committerErich Eckner <git@eckner.net>2018-03-20 10:06:47 +0100
commit816a6c66f443c8dfdb3892e3c77b76cbbf7125ab (patch)
treea225c5d93939c89a48c2615ac8e8646ce1f21bc2 /bin/bootstrap-mysql
parent09a1fb32f0480e8493fcd7e9560a73044f784355 (diff)
downloadbuilder-816a6c66f443c8dfdb3892e3c77b76cbbf7125ab.tar.xz
bin/bootstrap-mysql: table `statistics` new
Diffstat (limited to 'bin/bootstrap-mysql')
-rwxr-xr-xbin/bootstrap-mysql17
1 files changed, 16 insertions, 1 deletions
diff --git a/bin/bootstrap-mysql b/bin/bootstrap-mysql
index bd6df9c..4c1938f 100755
--- a/bin/bootstrap-mysql
+++ b/bin/bootstrap-mysql
@@ -143,7 +143,22 @@ if [ ! "$1" = 'slim' ]; then
' from_repository MEDIUMINT :repositories' \
' to_repository MEDIUMINT :repositories' \
' upstream_package_repository SMALLINT :upstream_repositories' \
- ' UNIQUE source from_repository upstream_package_repository'
+ ' UNIQUE source from_repository upstream_package_repository' \
+ 'statistics BIGINT' \
+ ' date DATETIME' \
+ ' stable_packages_count MEDIUMINT' \
+ ' pending_tasks_count MEDIUMINT' \
+ ' pending_packages_count MEDIUMINT' \
+ ' staging_packages_count MEDIUMINT' \
+ ' testing_packages_count MEDIUMINT' \
+ ' tested_packages_count MEDIUMINT' \
+ ' broken_tasks_count MEDIUMINT' \
+ ' dependency_loops_count MEDIUMINT' \
+ ' dependency_looped_tasks_count MEDIUMINT' \
+ ' locked_tasks_count MEDIUMINT' \
+ ' blocked_tasks_count MEDIUMINT' \
+ ' next_tasks_count MEDIUMINT' \
+ ' UNIQUE date'
)
# shellcheck disable=SC2016