summaryrefslogtreecommitdiff
path: root/bin/bootstrap-mysql
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-02-05 09:16:17 +0100
committerErich Eckner <git@eckner.net>2018-02-05 09:16:17 +0100
commit25c4fc4327cd66e86121dd2740772fb6cd6bcc20 (patch)
treed26a0e195395ce70cbe997444388cd7434c32670 /bin/bootstrap-mysql
parent85f10d9ce376f8c921abd6f0266d5da62bb7c791 (diff)
downloadbuilder-25c4fc4327cd66e86121dd2740772fb6cd6bcc20.tar.xz
bin/bootstrap-mysql: create `todos` and `todo_links`, too
Diffstat (limited to 'bin/bootstrap-mysql')
-rwxr-xr-xbin/bootstrap-mysql9
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/bootstrap-mysql b/bin/bootstrap-mysql
index ae51e25..a10b2d7 100755
--- a/bin/bootstrap-mysql
+++ b/bin/bootstrap-mysql
@@ -125,7 +125,14 @@ if [ ! "$1" = 'slim' ]; then
' build_assignment BIGINT :build_assignments' \
' date DATETIME' \
' reason SMALLINT :fail_reasons' \
- ' log_file VARCHAR(512)'
+ ' log_file VARCHAR(512)' \
+ 'todos MEDIUMINT' \
+ ' file VARCHAR(64)' \
+ ' line MEDIUMINT' \
+ ' description VARCHAR(512)'
+ 'todo_links MEDIUMINT' \
+ ' dependent MEDIUMINT' \
+ ' depending_on MEDIUMINT'
)
{