Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create new database in PhpStorm

I have 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?

like image 408
suther Avatar asked Sep 02 '15 08:09

suther


1 Answers

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 ?! :)

like image 65
suther Avatar answered Sep 24 '22 14:09

suther