diff --git a/keyserver/src/database/migration-config.js b/keyserver/src/database/migration-config.js
--- a/keyserver/src/database/migration-config.js
+++ b/keyserver/src/database/migration-config.js
@@ -89,6 +89,20 @@
       );
     },
   ],
+  [
+    10,
+    async () => {
+      await dbQuery(SQL`
+        CREATE TABLE IF NOT EXISTS policy_acknowledgments (
+          user bigint(20) NOT NULL,
+          policy varchar(255) NOT NULL,
+          date bigint(20) NOT NULL,
+          confirmed tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
+          PRIMARY KEY (user, policy)
+        ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+      `);
+    },
+  ],
 ]);
 const newDatabaseVersion: number = Math.max(...migrations.keys());