mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-04 21:01:21 +08:00
10 lines
356 B
SQL
10 lines
356 B
SQL
CREATE DATABASE querydsl CHARACTER SET utf8 COLLATE utf8_swedish_ci;
|
|
|
|
# For access from within the Vagrant box
|
|
CREATE USER 'querydsl'@'localhost' IDENTIFIED BY 'querydsl';
|
|
GRANT ALL PRIVILEGES ON querydsl.* TO 'querydsl'@'localhost';
|
|
|
|
# Host access
|
|
CREATE USER 'querydsl'@'%' IDENTIFIED BY 'querydsl';
|
|
GRANT ALL PRIVILEGES ON querydsl.* TO 'querydsl'@'%';
|