Index: src/wp-admin/includes/upgrade.php
===================================================================
--- src/wp-admin/includes/upgrade.php	(revision 42822)
+++ src/wp-admin/includes/upgrade.php	(working copy)
@@ -307,6 +307,45 @@
 			)
 		);
 
+		// Privacy Policy page
+		if ( is_multisite() ) {
+			$privacy_policy_content = get_site_option( 'privacy_policy_page_default_content' );
+		}
+
+		$privacy_policy_content = ! empty( $privacy_policy_content ) ? $privacy_policy_content :
+			__( '(Replace this text with the content of your privacy policy, then publish this page.)' );
+
+		$privacy_policy_guid = get_option( 'home' ) . '/?page_id=3';
+		$wpdb->insert(
+			$wpdb->posts, array(
+				'post_author'           => $user_id,
+				'post_date'             => $now,
+				'post_date_gmt'         => $now_gmt,
+				'post_content'          => $privacy_policy_content,
+				'post_excerpt'          => '',
+				'comment_status'        => 'closed',
+				'post_title'            => __( 'Privacy Policy' ),
+				/* translators: Privacy Policy page slug */
+				'post_name'             => __( 'privacy-policy' ),
+				'post_modified'         => $now,
+				'post_modified_gmt'     => $now_gmt,
+				'guid'                  => $privacy_policy_guid,
+				'post_type'             => 'page',
+				'post_status'           => 'draft',
+				'to_ping'               => '',
+				'pinged'                => '',
+				'post_content_filtered' => '',
+			)
+		);
+		$wpdb->insert(
+			$wpdb->postmeta, array(
+				'post_id'    => 3,
+				'meta_key'   => '_wp_page_template',
+				'meta_value' => 'default',
+			)
+		);
+		update_option( 'wp_page_for_privacy_policy', 3 );
+
 		// Set up default widgets for default theme.
 		update_option(
 			'widget_search', array(
