From: Kern Sibbald Date: Wed, 13 Jul 2016 08:41:08 +0000 (+0200) Subject: Tweak make_mysql_table.in comments X-Git-Tag: Release-7.4.3~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=307d1523a6eeef51be118f2b00af5ce0e67ef6e6;p=bacula%2Fbacula Tweak make_mysql_table.in comments --- diff --git a/bacula/src/cats/make_mysql_tables.in b/bacula/src/cats/make_mysql_tables.in index 8ed859834c..2e78e585dc 100644 --- a/bacula/src/cats/make_mysql_tables.in +++ b/bacula/src/cats/make_mysql_tables.in @@ -2,12 +2,22 @@ # # shell script to create Bacula MySQL tables # -# Copyright (C) 2000-2015 Kern Sibbald +# Copyright (C) 2000-2016 Kern Sibbald # License: BSD 2-Clause; see file LICENSE-FOSS # # Important note: -# You won't get any support for performance issue if you changed the default -# schema. +# We cannot provide support for performance issues +# if you changed the default schema. In partcular +# if you change any of the indexes. +# +# Useful commands: +# mysql -u root +# show databases; +# show tables from ; +# show columns from from ; +# +# use mysql; +# select user from user; # bindir=@MYSQL_BINDIR@ PATH="$bindir:$PATH"