diff options
author | Gary Pendergast <pento@git.wordpress.org> | 2019-08-05 07:09:14 +0000 |
---|---|---|
committer | Gary Pendergast <pento@git.wordpress.org> | 2019-08-05 07:09:14 +0000 |
commit | 82d7870fe45bc4b5c20150b0041f9e4ae23e574b (patch) | |
tree | 856e5fe571b31f2acb6201be3d9e1e7c5dba4dfa /tools/local-env/mysql-init.sql | |
parent | 3705fddde7b2dff6924ab8434de2eb3a5ec59399 (diff) | |
download | wordpress-82d7870fe45bc4b5c20150b0041f9e4ae23e574b.tar.gz wordpress-82d7870fe45bc4b5c20150b0041f9e4ae23e574b.zip |
Build Tools: Add a WordPress Development Environment.
This commit adds the first iteration of a Docker-based config for setting up a local WordPress development environment.
Props pento, noisysocks, mcsf, pbearne, isabel_brison.
See #47767.
git-svn-id: https://develop.svn.wordpress.org/trunk@45745 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'tools/local-env/mysql-init.sql')
-rw-r--r-- | tools/local-env/mysql-init.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/local-env/mysql-init.sql b/tools/local-env/mysql-init.sql new file mode 100644 index 0000000000..911d6eb3d2 --- /dev/null +++ b/tools/local-env/mysql-init.sql @@ -0,0 +1,8 @@ +/** + * MySQL server init. + * + * SQL queries in this file will be executed the first time the MySQL server is started. + */ + +CREATE DATABASE IF NOT EXISTS wordpress_develop; +CREATE DATABASE IF NOT EXISTS wordpress_develop_tests; |