You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
336 B
6 lines
336 B
CREATE SCHEMA `personalpage` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
|
|
CREATE SCHEMA `test_personalpage` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
|
|
CREATE USER 'nicolas'@'%' IDENTIFIED BY 'qwerty';
|
|
GRANT ALL PRIVILEGES ON personalpage.* TO 'nicolas'@'%';
|
|
GRANT ALL PRIVILEGES ON test_personalpage.* TO 'nicolas'@'%';
|