func (a *Adapter) GetAllTableNames() ([]string, error) {
    var rows []informationSchemaTables
    err := a.db.Select(&rows, "SELECT table_name AS table_name FROM information_schema.tables WHERE table_schema=database() AND table_type = 'BASE TABLE' ORDER BY table_name")

    if err != nil {