From 7017b59baaf8d8c9a7d01d4998d5af034ea81436 Mon Sep 17 00:00:00 2001 From: Thomas Arrow Date: Thu, 16 Jul 2026 09:35:33 +0100 Subject: [PATCH] Revert "Add initial terms of use policy via migration (#1192)" This reverts commit 9bc26ce39f429643f4d5458e1a0bfee662df054e. --- ...249_create_initial_terms_of_use_policy.php | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 database/migrations/2026_07_08_080249_create_initial_terms_of_use_policy.php diff --git a/database/migrations/2026_07_08_080249_create_initial_terms_of_use_policy.php b/database/migrations/2026_07_08_080249_create_initial_terms_of_use_policy.php deleted file mode 100644 index 77f392a5..00000000 --- a/database/migrations/2026_07_08_080249_create_initial_terms_of_use_policy.php +++ /dev/null @@ -1,36 +0,0 @@ -insert([ - 'policy_type' => self::POLICY_TYPE, - 'active_from' => self::ACTIVE_FROM, - 'content_vue_file' => 'terms-of-use/version-1.vue', - 'created_at' => $now, - 'updated_at' => $now, - ]); - } - - /** - * Reverse the migrations. - */ - public function down(): void { - DB::table(self::TABLE_NAME)->where([ - 'policy_type' => self::POLICY_TYPE, - 'active_from' => self::ACTIVE_FROM, - ])->delete(); - } -};