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
386 B
6 lines
386 B
CREATE SCHEMA IF NOT EXISTS `skeletondjango` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
|
|
CREATE SCHEMA IF NOT EXISTS `test_skeletondjango` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
|
|
CREATE USER IF NOT EXISTS 'nicolas'@'%' IDENTIFIED BY 'qwerty';
|
|
GRANT ALL PRIVILEGES ON skeletondjango.* TO 'nicolas'@'%';
|
|
GRANT ALL PRIVILEGES ON test_skeletondjango.* TO 'nicolas'@'%';
|