Wp db reset (WP-CLI)

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
NAME

  wp db reset

DESCRIPTION

  Removes all tables from the database.

SYNOPSIS

  wp db reset [--dbuser=<value>] [--dbpass=<value>] [--yes]

  Runs `DROP_DATABASE` and `CREATE_DATABASE` SQL statements using
  `DB_HOST`, `DB_NAME`, `DB_USER` and `DB_PASSWORD` database credentials
  specified in wp-config.php.

OPTIONS

  [--dbuser=<value>]
    Username to pass to mysql. Defaults to DB_USER.

  [--dbpass=<value>]
    Password to pass to mysql. Defaults to DB_PASSWORD.

  [--yes]
    Answer yes to the confirmation message.

EXAMPLES

    $ wp db reset --yes
    Success: Database reset.