You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below are the tables which we probably want to anonymize.
MariaDB [wordpress]> SHOW COLUMNS FROM wordpress.wp_wc_admin_notes;
+---------------+---------------------+------+-----+---------------------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------------+---------------------+------+-----+---------------------+----------------+
| note_id | bigint(20) unsigned | NO | PRI | NULL | auto_increment |
| name | varchar(255) | NO | | NULL | |
| type | varchar(20) | NO | | NULL | |
| locale | varchar(20) | NO | | NULL | |
| title | longtext | NO | | NULL | |
| content | longtext | NO | | NULL | |
| content_data | longtext | YES | | NULL | |
| status | varchar(200) | NO | | NULL | |
| source | varchar(200) | NO | | NULL | |
| date_created | datetime | NO | | 0000-00-00 00:00:00 | |
| date_reminder | datetime | YES | | NULL | |
| is_snoozable | tinyint(1) | NO | | 0 | |
| layout | varchar(20) | NO | | | |
| image | varchar(200) | YES | | NULL | |
| is_deleted | tinyint(1) | NO | | 0 | |
| is_read | tinyint(1) | NO | | 0 | |
| icon | varchar(200) | NO | | info | |
+---------------+---------------------+------+-----+---------------------+----------------+
We should probably anonymize title, content and perhaps content_data?
MariaDB [wordpress]> SHOW COLUMNS FROM wordpress.wp_woocommerce_log;
+-----------+---------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------+---------------------+------+-----+---------+----------------+
| log_id | bigint(20) unsigned | NO | PRI | NULL | auto_increment |
| timestamp | datetime | NO | | NULL | |
| level | smallint(4) | NO | MUL | NULL | |
| source | varchar(200) | NO | | NULL | |
| message | longtext | NO | | NULL | |
| context | longtext | YES | | NULL | |
+-----------+---------------------+------+-----+---------+----------------+
Developers might put personal data into logs, do we need to anonymize message?
The plugin also adds the following post types: product, product_variation, shop_order, shop_order_refund and shop_coupon. We would likely need to anonymize the post meta for shop_order and shop_order_refund?
The text was updated successfully, but these errors were encountered:
WooCommerce creates the following tables:
Below are the tables which we probably want to anonymize.
We should probably anonymize
title
,content
and perhapscontent_data
?Developers might put personal data into logs, do we need to anonymize
message
?The plugin also adds the following post types:
product
,product_variation
,shop_order
,shop_order_refund
andshop_coupon
. We would likely need to anonymize the post meta forshop_order
andshop_order_refund
?The text was updated successfully, but these errors were encountered: