Search code examples
databasephpstorm

Create new database in PhpStorm


I have a mysql database on localhost. Now I want to install some web application which needs an empty database (for example "myapplication").

How can I create such database in PhpStorm 9?


Solution

  • I only found the way to open the SQL-Console (CTRL+SHIFT+F10), and create in manually by entering SQL command:

    CREATE DATABASE myapplication;

    Ok, is not much to write, so maybe no need to have a GUI for that ?! :)