gestion_depenses/createdb.sql
2018-12-20 21:52:35 +01:00

4 lines
180 B
SQL

CREATE DATABASE gestion_depenses;
CREATE USER 'gestdep'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON gestion_depenses.* to 'gestdep'@'localhost';
FLUSH PRIVILEGES;