From 8f91ba6a76b1dd27bf27f05ad9d1c75946f1cc34 Mon Sep 17 00:00:00 2001 From: Wil Clouser Date: Mon, 29 Nov 2010 15:46:06 -0800 Subject: [PATCH] allow nulls in perf table FK --- migrations/99-fix-perf-tables.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 migrations/99-fix-perf-tables.sql diff --git a/migrations/99-fix-perf-tables.sql b/migrations/99-fix-perf-tables.sql new file mode 100644 index 0000000000..a1bb296430 --- /dev/null +++ b/migrations/99-fix-perf-tables.sql @@ -0,0 +1,2 @@ +-- we need to allow nulls for the baseline numbers +ALTER TABLE `perf_results` CHANGE `addon_id` `addon_id` INT( 11 ) UNSIGNED NULL;