Advertisement
danielhilst

create-wordpress-database.sql

Nov 12th, 2015
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.14 KB | None | 0 0
  1. CREATE DATABASE IF NOT EXISTS wp_blog;
  2. GRANT ALL PRIVILEGES ON wp_blog.* TO 'wp_root'@'localhost' IDENTIFIED BY 'password';
  3. FLUSH PRIVILEGES;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement