From 75eecd977176319c629ed0a29ea9ae254284a385 Mon Sep 17 00:00:00 2001 From: abijah Date: Fri, 28 Aug 2009 20:50:52 +0000 Subject: [PATCH] Added script to build a sandbox from the current data. The location of the script is unsafe, but since it can only muck up the sandbox database, it doesn't matter. git-svn-id: file:///svn-source/pmgr/branches/sandbox_0.1@811 97e9348a-65ac-dc4b-aefc-98561f571b83 --- site/build_sandbox.cmd | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 site/build_sandbox.cmd diff --git a/site/build_sandbox.cmd b/site/build_sandbox.cmd new file mode 100644 index 0000000..3143b81 --- /dev/null +++ b/site/build_sandbox.cmd @@ -0,0 +1,5 @@ +@echo off +mysqldump --user=pmgr --password=pmgruser --opt property_manager > H:\pmgr_sand.sql +mysql --user=pmgr --password=pmgruser --database=pmgr_sand < H:\pmgr_sand.sql +del H:\pmgr_sand.sql +echo Build Complete!