diff options
author | Erich Eckner <git@eckner.net> | 2018-02-05 09:16:17 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-02-05 09:16:17 +0100 |
commit | 25c4fc4327cd66e86121dd2740772fb6cd6bcc20 (patch) | |
tree | d26a0e195395ce70cbe997444388cd7434c32670 | |
parent | 85f10d9ce376f8c921abd6f0266d5da62bb7c791 (diff) | |
download | builder-25c4fc4327cd66e86121dd2740772fb6cd6bcc20.tar.xz |
bin/bootstrap-mysql: create `todos` and `todo_links`, too
-rwxr-xr-x | bin/bootstrap-mysql | 9 |
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' ) { |