From 773c4a24a54a0dbdece4593e20d15233f33a15a9 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Tue, 17 Feb 2026 09:08:44 -0800 Subject: [PATCH] Revert "models: remove legacy template-function-faker plugin row" This reverts commit 6cc659e5c493349546a7042f11f03ff65a6b5c63. --- crates/yaak-models/build.rs | 5 ----- .../migrations/20260217000000_remove-legacy-faker-plugin.sql | 3 --- 2 files changed, 8 deletions(-) delete mode 100644 crates/yaak-models/build.rs delete mode 100644 crates/yaak-models/migrations/20260217000000_remove-legacy-faker-plugin.sql diff --git a/crates/yaak-models/build.rs b/crates/yaak-models/build.rs deleted file mode 100644 index 157d24d4..00000000 --- a/crates/yaak-models/build.rs +++ /dev/null @@ -1,5 +0,0 @@ -fn main() { - // Migrations are embedded with include_dir!, so trigger rebuilds when SQL files change. - println!("cargo:rerun-if-changed=migrations"); - println!("cargo:rerun-if-changed=blob_migrations"); -} diff --git a/crates/yaak-models/migrations/20260217000000_remove-legacy-faker-plugin.sql b/crates/yaak-models/migrations/20260217000000_remove-legacy-faker-plugin.sql deleted file mode 100644 index fe5b5d93..00000000 --- a/crates/yaak-models/migrations/20260217000000_remove-legacy-faker-plugin.sql +++ /dev/null @@ -1,3 +0,0 @@ --- Remove stale plugin rows left over from the brief period when faker shipped as bundled. -DELETE FROM plugins -WHERE directory LIKE '%template-function-faker';