You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
334 B

#!/bin/sh
sql_db_pre_setup() {
cat << EOF
EOF
}
sql_setup() {
cat << EOF
EOF
}
sql_header() {
cat << EOF
EOF
}
sql_extra_tables() {
cat << EOF
-- Please add MySQL commnad for extra tables
-- Need to add "active_watchers_log"
EOF
}
sql_footer() {
cat << EOF
ALTER TABLE location_attrs ALTER COLUMN avalue TYPE varchar(512);
EOF
}