1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Check that we haven't any strange new tables or databases
#
# PBXT drop the pbxt database if it exits
--disable_warnings
--disable_query_log
drop database if exists pbxt;
--enable_query_log
--enable_warnings
show databases;
show tables in mysql;
|