We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c72ade5 commit b6c05acCopy full SHA for b6c05ac
migrations/034_update_tos.php
@@ -25,7 +25,9 @@ function up()
25
'value' => $tos
26
]);
27
28
- $db->exec('ALTER TABLE oc_config DROP IF EXISTS tos');
+ try {
29
+ $db->exec('ALTER TABLE oc_config DROP tos');
30
+ } catch (PDOException $e) {}
31
32
$db->exec("UPDATE config
33
SET description = 'Müssen Lehrende einem Datenschutztext zustimmen, bevor sie das Opencast-Plugin in einer Veranstaltung verwenden können?'
0 commit comments