summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-11-19 10:32:51 +0100
committermsquare <msquare@notrademark.de>2017-11-19 10:32:51 +0100
commit80606cdd8b4cca2c3b589644cf7f02db34689d70 (patch)
tree090229ace3320db453e0203b237fa59f3e444332 /db
parente9a28eb20e8a16e8f6fbf1fbc9498c011a2a1940 (diff)
add sql script to anonymize a live db for testing
Diffstat (limited to 'db')
-rw-r--r--db/anonymize.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/anonymize.sql b/db/anonymize.sql
new file mode 100644
index 00000000..ba420d79
--- /dev/null
+++ b/db/anonymize.sql
@@ -0,0 +1,10 @@
+update User set Nick=concat('User',UID), Name=concat('Name',UID), Vorname=concat('Prename',UID), `Alter`=0, Telefon='', DECT='', Handy='', email=concat('engel', UID, '@engelsystem.de'), jabber='', Hometown='';
+update Messages set Text=concat('Message', id);
+update News set Betreff=concat('Subject', ID), Text=concat('News', ID);
+update NewsComments set Text=concat('Comment', ID);
+update Questions set Question=concat('Question', QID), Answer=concat('Answer', QID);
+update ShiftEntry set Comment='', freeload_comment='';
+update ShiftTypes set name=concat('Shifttype',id), description='Description';
+update AngelTypes set name=concat('Angeltype',id), description=concat('Description of angeltype',id);
+TRUNCATE TABLE LogEntries;
+